Skip to content

Commit

Permalink
Update mobile CSS
Browse files Browse the repository at this point in the history
  • Loading branch information
Reckless-Satoshi committed Sep 29, 2022
1 parent 68f35b3 commit 4362530
Showing 1 changed file with 23 additions and 4 deletions.
27 changes: 23 additions & 4 deletions mobile/html/Web.bundle/css/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,24 @@ body {
font-family: 'Roboto';
}

@media (prefers-color-scheme: dark) {
body {
background: rgb(0, 0, 0);
}
.loaderSpinner {
color: #90caf9;
}
.loaderSpinner:before {
background: rgb(0, 0, 0);
}
.loaderSpinner:after {
background: rgb(0, 0, 0);
}
.slider {
color: #fff;
}
}

#main {
position: fixed;
width: 100%;
Expand Down Expand Up @@ -151,11 +169,12 @@ input[type='number'] {
width: auto !important;
}

@media (max-width: 929px) {
@media (max-height: 725px) and (max-width: 925px) {
.appCenter:has(> div.MuiGrid-root:first-child, > div.MuiBox-root:first-child) {
overflow-y: scroll;
margin-top: 12px;
padding-bottom: 25px;
overflow-y: auto;
margin-top: 1em;
padding-bottom: 3em;
height: 100%;
width: 100%;
}
}

0 comments on commit 4362530

Please sign in to comment.