Skip to content

Commit

Permalink
Fix scrollbars showing up
Browse files Browse the repository at this point in the history
  • Loading branch information
kfigiela committed May 29, 2020
1 parent 9b68ff6 commit c9d5988
Showing 1 changed file with 18 additions and 6 deletions.
24 changes: 18 additions & 6 deletions app/www/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -124,10 +124,6 @@ body {
align-content: stretch;
}

.container > * {
width: 100%;
}

.divider {
margin: 0;
}
Expand Down Expand Up @@ -199,13 +195,29 @@ body {
flex: 0 0 auto;
}

html {
height: 100%;
width: 100%;
}

body {
height: 100vh;
height: 100%;
width: 100%;
display: flex;
flex-direction: column;
}

:root {
--mdc-theme-primary: #0f52ba;
--mdc-theme-secondary: #0f52ba;
}
}
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
color:red;
}
input{
-moz-appearance: textfield;
color:red !important;
}

0 comments on commit c9d5988

Please sign in to comment.