Skip to content

Commit d74ab89

Browse files
committed
added breakpoint for mobile height responsiveness
1 parent c9871a4 commit d74ab89

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

static/index/scss/style.scss

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ label {
2323
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
2424

2525
$phone-breakpoints: 450px;
26-
$lrg-breakpoints: 992px;
2726

2827
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
2928
// To-do page styles
@@ -259,9 +258,9 @@ $users-background-color: #000;
259258
// Main background
260259
&-background {
261260
background-color: $todo-page-background-color;
262-
@media (min-width: $lrg-breakpoints) {
263-
height: "-webkit-fill-available";
264-
height: "-moz-available";
261+
@media (min-width: 992px) {
262+
height: -webkit-fill-available;
263+
height: -moz-available;
265264
}
266265
}
267266

0 commit comments

Comments
 (0)