decide.nolog.cz/app/styles/_generic-croodle-styles.scss
sappor0 c23ba1f6fb Using bootstrap 4 and related UI refresh (#205)
Changes at a glance:

- Switch from BS3 to BS4
- Polishing of some UI elements (low-hanging fruit for UX)
- Mobile-friendly layout.
2019-06-07 11:22:13 +02:00

26 lines
447 B
SCSS

.cr-navbar {
background: map-get($theme-colors, dark);
}
.cr-logo {
font-size: $font-size-base;
margin-bottom: 0;
// This is needed for cases when the h1 does not contain a link, like when JS
// is disabled.
color: $body-bg;
}
.cr-main {
padding-top: map-get($spacers, 5);
}
.cr-claim {
margin-bottom: map-get($spacers, 4);
}
.cr-hide-on-mobile {
display: none;
@include media-breakpoint-up(md) {
display: block;
}
}