c23ba1f6fb
Changes at a glance: - Switch from BS3 to BS4 - Polishing of some UI elements (low-hanging fruit for UX) - Mobile-friendly layout.
26 lines
447 B
SCSS
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;
|
|
}
|
|
}
|