Skip to content

Commit

Permalink
Update main.scss
Browse files Browse the repository at this point in the history
  • Loading branch information
quiple committed Apr 16, 2023
1 parent 649d2b1 commit 6a29b5a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/css/main.scss
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ small { @include g7(2); display: block; color: #{$foreground}3f; }
main {
p {
max-width: 100%;
@include desktop { max-width: 100vw * calc(3 / 5); }
@include desktop { max-width: calc(100vw * (3 / 5)); }
}
ul {
margin: .75rem 0;
Expand All @@ -213,8 +213,8 @@ main {
}
}
footer {
margin-top: $padding * calc(1 / 2);
margin-bottom: $padding * calc(3 / 4);
margin-top: calc($padding * (1 / 2));
margin-bottom: calc($padding * (3 / 4));
}
#title {
white-space: nowrap;
Expand Down Expand Up @@ -262,7 +262,7 @@ footer {
@include desktop { @include g7(2); }
opacity: 0;
position: absolute;
bottom: $padding * calc(3 / 4);
bottom: calc($padding * (3 / 4));
}
&.show {
h1 {
Expand Down

0 comments on commit 6a29b5a

Please sign in to comment.