1
0
Fork 0
mirror of synced 2024-07-06 15:00:49 +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

@ -31,19 +31,11 @@
margin: 20px 40px;
}
.nav {
overflow: auto;
flex: 0 1 auto;
width: 275px;
height: 100%;
}
@media only screen and (min-width: 1800px) {
.nav {
overflow: auto;
flex: 0 1 auto;
width: 300px;
height: 100%;
}
}
</style>

View file

@ -121,21 +121,12 @@
padding: 0;
}
.root {
display: grid;
grid-template-columns: 275px 1fr 275px;
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;