You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
336 B
12 lines
336 B
2 years ago
|
/*
|
||
|
Allow for wider layout on bigger screens
|
||
|
- vanilla max-width is 1200px
|
||
|
- there is no penalty to slightly expanding flexbox on bigger screens
|
||
|
- only applies on landing pages (webapp will expand as you add columns)
|
||
|
|
||
|
author: trwnh
|
||
|
license: Public Domain
|
||
|
*/
|
||
|
@media (min-width: 1600px) {
|
||
|
.landing-page .container {max-width: 1600px}
|
||
|
}
|