Skip to content

Commit

Permalink
Improve visibility of selected TimerLine
Browse files Browse the repository at this point in the history
Update the CSS so that the highlight around the active line is wider and more visibile. Increased the spacing between lines.
  • Loading branch information
Xayton authored Feb 1, 2024
1 parent 588ae5a commit fbf4a6e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/TimerLine.vue
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ const overtime = computed(() => props.seconds > props.max);
.line {
border: var(--color4) 1px solid;
border-radius: 6px;
margin: 10px 0;
margin: 12px 0;
padding: 6px;
cursor: pointer;
Expand Down Expand Up @@ -63,7 +63,7 @@ const overtime = computed(() => props.seconds > props.max);
}
.active {
box-shadow: 0 0 0 3px rgba(227, 227, 227, .4);
box-shadow: 0 0 4px 6px rgba(227, 227, 227, .4);
}
.line-background {
Expand Down

0 comments on commit fbf4a6e

Please sign in to comment.