Skip to content

Commit

Permalink
Further clarify separation of concerns
Browse files Browse the repository at this point in the history
  • Loading branch information
davepeck committed Apr 17, 2024
1 parent 8520bc7 commit 04883a0
Showing 1 changed file with 16 additions and 19 deletions.
35 changes: 16 additions & 19 deletions server/vb/templates/components/countdown.dhtml
Original file line number Diff line number Diff line change
Expand Up @@ -9,25 +9,6 @@
padding-top: 1em;
}

me .countdown {
display: flex;
justify-content: center;
align-items: center;
font-size: 24px;
font-weight: 500;
font-family: var(--font-mono);
gap: 4px;
height: 34px !important;
}

me .countdown span {
display: flex;
justify-content: center;
align-items: center;
height: 100%;
width: 27px;
}

me p {
text-transform: uppercase;
}
Expand All @@ -41,6 +22,22 @@
--number-color: transparent;
--number-bg-color: transparent;
--colon-color: transparent;
display: flex;
justify-content: center;
align-items: center;
font-size: 24px;
font-weight: 500;
font-family: var(--font-mono);
gap: 4px;
height: 34px !important;
}

me span {
display: flex;
justify-content: center;
align-items: center;
height: 100%;
width: 27px;
}

me span.number {
Expand Down

0 comments on commit 04883a0

Please sign in to comment.