Skip to content

Commit b8734dd

Browse files
author
Murage
authored
Merge pull request #3 from murage-poc/main
feat: add a notice (to vary the release)
2 parents 5740bfa + 032fc7a commit b8734dd

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

apps/countopia/index.html

+2
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@ <h1>Counter: <span id="counter">0</span></h1>
1212
<button id="increment">Increment</button>
1313
<button id="decrement">Decrement</button>
1414
<button id="reset">Reset</button>
15+
16+
<small class="notice">Countopia respects device dark mode settings!</small>
1517
</div>
1618
<script type="module" src="/src/main.ts"></script>
1719
</body>

apps/countopia/src/style.css

+6
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,12 @@ button:focus-visible {
5555
outline: 4px auto -webkit-focus-ring-color;
5656
}
5757

58+
.notice {
59+
display: block;
60+
font-style: italic;
61+
padding-top: 2rem;
62+
}
63+
5864
@media (prefers-color-scheme: light) {
5965
:root {
6066
color: #213547;

0 commit comments

Comments
 (0)