1
0
Fork 0
mirror of synced 2024-07-03 21:40:55 +12:00

Media queries removed

This commit is contained in:
Joe 2020-05-29 13:24:33 +01:00
parent 71f61d6332
commit 1353e229e8
2 changed files with 2 additions and 19 deletions

View file

@ -34,16 +34,8 @@
.nav {
overflow: auto;
flex: 0 1 auto;
width: 275px;
width: 300px;
height: 100%;
}
@media only screen and (min-width: 1800px) {
.nav {
overflow: auto;
flex: 0 1 auto;
width: 300px;
height: 100%;
}
}
</style>

View file

@ -123,20 +123,11 @@
.root {
display: grid;
grid-template-columns: 275px 1fr 275px;
grid-template-columns: 300px 1fr 300px;
width: 100%;
background: var(--grey-light);
}
@media only screen and (min-width: 1800px) {
.root {
display: grid;
grid-template-columns: 300px 1fr 300px;
width: 100%;
background: var(--grey-light);
}
}
.ui-nav {
grid-column: 1;
background-color: var(--white);