Skip to content

Commit

Permalink
Soften progress curvature
Browse files Browse the repository at this point in the history
  • Loading branch information
ericnewcomer committed Sep 25, 2024
1 parent bbf9684 commit a848a5d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/progress/ProgressBar.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export class ProgressBar extends RapidElement {
display: flex;
box-sizing: content-box;
background: #f1f1f1;
border-radius: calc(var(--curvature) * 1.3);
border-radius: var(--curvature);
box-shadow: inset 1px 1px 1px rgba(0, 0, 0, 0.05);
overflow: hidden;
min-height: 1.5rem;
Expand All @@ -32,7 +32,7 @@ export class ProgressBar extends RapidElement {
.meter > span {
display: block;
height: 100%;
border-radius: var(--curvature);
border-radius: calc(var(--curvature) * 0.8);
background-color: var(--color-primary-dark);
background-image: linear-gradient(
center bottom,
Expand Down

0 comments on commit a848a5d

Please sign in to comment.