Skip to content

Commit

Permalink
fix(themes): Fix circle theme height issue, closes #516
Browse files Browse the repository at this point in the history
  • Loading branch information
MurhafSousli committed Aug 26, 2021
1 parent 7f15911 commit c6bbf53
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ $sb-text-size: 0.8em;
background-color: var(--button-color);
box-shadow: 0 3px 5px -1px rgba(0, 0, 0, .2), 0 6px 10px 0 rgba(0, 0, 0, .14), 0 1px 18px 0 rgba(0, 0, 0, .12);
width: 2.5em;
height: 2.5em;
min-height: 2.5em;
border-radius: 50%;
transition: background .4s cubic-bezier(.25, .8, .25, 1), box-shadow 280ms cubic-bezier(.4, 0, .2, 1);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ $sb-text-size: 0.8em;
box-shadow: 0 3px 5px -1px rgba(0, 0, 0, .2), 0 6px 10px 0 rgba(0, 0, 0, .14), 0 1px 18px 0 rgba(0, 0, 0, .12);
font-size: 1.4em;
width: 2.5em;
height: 2.5em;
min-height: 2.5em;
border-radius: 50%;
transition: background .4s cubic-bezier(.25, .8, .25, 1), box-shadow 280ms cubic-bezier(.4, 0, .2, 1);
background: radial-gradient(ellipse farthest-corner at center, white 30%, darken(white, 5%) 100%);
Expand Down

0 comments on commit c6bbf53

Please sign in to comment.