We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 5740bfa + 032fc7a commit b8734ddCopy full SHA for b8734dd
apps/countopia/index.html
@@ -12,6 +12,8 @@ <h1>Counter: <span id="counter">0</span></h1>
12
<button id="increment">Increment</button>
13
<button id="decrement">Decrement</button>
14
<button id="reset">Reset</button>
15
+
16
+ <small class="notice">Countopia respects device dark mode settings!</small>
17
</div>
18
<script type="module" src="/src/main.ts"></script>
19
</body>
apps/countopia/src/style.css
@@ -55,6 +55,12 @@ button:focus-visible {
55
outline: 4px auto -webkit-focus-ring-color;
56
}
57
58
+.notice {
59
+ display: block;
60
+ font-style: italic;
61
+ padding-top: 2rem;
62
+}
63
64
@media (prefers-color-scheme: light) {
65
:root {
66
color: #213547;
0 commit comments