Skip to content

Commit

Permalink
Refactor remaining sass division operators to use multiplication
Browse files Browse the repository at this point in the history
  • Loading branch information
gravitystorm committed Sep 13, 2023
1 parent f3a4443 commit 841cff6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/assets/stylesheets/common.scss
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ small, aside {

.small_icon {
vertical-align: middle;
margin-right: $lineheight/4;
margin-right: $lineheight * 0.25;
}

[dir=rtl] { /* no-r2 */ text-align: right; }
Expand Down Expand Up @@ -102,7 +102,7 @@ header {

> * {
height: 100%;
padding: $lineheight/2;
padding: $lineheight * 0.5;
}

h1, nav.primary {
Expand Down

0 comments on commit 841cff6

Please sign in to comment.