Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(css): fix contrast of 4 css examples #2475

Merged
merged 7 commits into from
Mar 14, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions live-examples/css-examples/cssom-view/scroll-behavior.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
flex-direction: column;
}

.nav a {
color: #009e5f;
}

scroll-container {
border: 1px solid black;
display: block;
Expand Down
1 change: 1 addition & 0 deletions live-examples/css-examples/positioned-layout/offsets.css
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
#example-element {
background-color: #264653;
border: 4px solid #ffb500;
color: white;
position: absolute;
width: 140px;
height: 60px;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
</div>

<div class="example-choice">
<pre><code class="language-css">text-emphasis: filled double-circle blue;</code></pre>
<pre><code class="language-css">text-emphasis: filled double-circle #ffb703;</code></pre>
<button type="button" class="copy hidden" aria-hidden="true">
<span class="visually-hidden">Copy to Clipboard</span>
</button>
Expand Down