1
0
Fork 0

Merge pull request #1078 from jejacks0n/jejacks0n/css-adjustments

Improves the css around box sizing and horizontal scrolling
This commit is contained in:
Joost De Cock 2021-06-05 08:09:08 +02:00 committed by GitHub
commit afd30f64d0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 14 additions and 0 deletions

View file

@ -1,3 +1,9 @@
* {
box-sizing: border-box;
}
.MuiToolbar-root {
overflow-y: auto;
}
div.layout-wrapper {
width: 100%;
margin: 0;

View file

@ -1,5 +1,13 @@
@import '../../../../../../node_modules/open-color/open-color.scss';
// Global style overrides
* {
box-sizing: border-box;
}
.MuiToolbar-root {
overflow-y: auto;
}
// Main page content layout
div.layout-wrapper {
width: 100%;