Skip to content

Commit

Permalink
tighter margins and a bit of glow
Browse files Browse the repository at this point in the history
  • Loading branch information
dkallen78 committed Dec 27, 2023
1 parent 8760d5d commit 376a874
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion seven-segment-clock/seven-segment-clock.css
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@ body {
fill: lime;
}

.digits path, .colon path {
.digits path, .colon circle {
filter: drop-shadow(0 0 1svh lime);
}
2 changes: 1 addition & 1 deletion seven-segment-clock/seven-segment-clock.js
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ function buildFace() {
const x1 = .5 * box.width;
const y1 = .3125 * box.height;
const y2 = .6875 * box.height;
const r = .5 * box.width;
const r = .25 * box.width;

let circle1 = makeSVGcircle(x1, y1, r);
colon.appendChild(circle1);
Expand Down

0 comments on commit 376a874

Please sign in to comment.