Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion assets/styles/_sizes.scss
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
$page-max-width: 800px;
$container-max-width: $page-max-width; // 1200px;
$container-max-width: 1200px;

// $icon-size: 1em;

Expand Down
4 changes: 2 additions & 2 deletions assets/styles/components/_header.scss
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ $mobile-header-logo-height: 42px;
> h1 {
margin: 0;

@include media-to(md) {
@media screen and (max-width: 800px) {
display: none;
}
}
Expand All @@ -49,7 +49,7 @@ $mobile-header-logo-height: 42px;
font-weight: bold;
}

@include media-to(sm) {
@media screen and (max-width: 600px) {
padding: 0.4em;
}
}
Expand Down
6 changes: 4 additions & 2 deletions assets/styles/components/_timer.scss
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
.timer {
width: 100vw;
height: 100vh;
width: 100%;
min-width: 100vw;
height: 100%;
min-height: 100vh;
margin: 0;
display: flex;
justify-content: center;
Expand Down
Loading