Skip to content

Commit

Permalink
improve control point visibility
Browse files Browse the repository at this point in the history
  • Loading branch information
katjaq committed Apr 27, 2024
1 parent eb6342c commit 4f4185b
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions thresholdmann.css
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@
--header-height: 60px;
--cpoint-radius: 0.5rem;
--cpoint-radius-hover: 0.75rem;
--cpoint-border-style: solid;
--cpoint-border-width: 1px;
--cpoint-border-color: white;
}

html, body {
Expand Down Expand Up @@ -48,6 +51,9 @@ html, body {
background: #146d84;
border-radius: var(--cpoint-radius);
transform: translate(-50%,-50%);
border-style: var(--cpoint-border-style);
border-width: var(--cpoint-border-width);
border-color: var(--cpoint-border-color);
}
.cpoint:hover {
width: var(--cpoint-radius-hover);
Expand Down

0 comments on commit 4f4185b

Please sign in to comment.