* feat(nav): make navbar static make the navbar in react layout and the static layout stick to the top of the screen * feat(challenges): Make classic view flex Classic view now uses flex to control it's height. This was necessary to control view and allow navbar to be static on other pages. This breaks mobile view and other non-classic challenge views * feat(app): Add logic to make screen expand on tablet * fix(app): let routes define their content structure * fix(less): use American spelling of gray * fix(classic-preview): make preview smaller to prevent scroll * feat(classic-frame): Make frame border less distinct * fix(challenges): scope test suite less to challenges * feat(challenges): make generic ChallengeTitle component
15 lines
300 B
Plaintext
15 lines
300 B
Plaintext
// should match ./ns.json value and filename
|
|
@ns: app;
|
|
|
|
.@{ns}-container {
|
|
.column();
|
|
width: 100vw;
|
|
}
|
|
|
|
.@{ns}-content {
|
|
.center(@value: @container-xl, @padding: @grid-gutter-width);
|
|
// makes the inital content height 0px
|
|
// then lets it grow to fit the rest of the space
|
|
flex: 1 0 0px;
|
|
}
|