decide.nolog.cz/app/styles/_bootstrap-tweaking.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

24 lines
469 B
SCSS

// We don't want the extra space added to jumbotron at larger screen sizes.
.jumbotron {
@include media-breakpoint-up(sm) {
padding: $jumbotron-padding $jumbotron-padding;
}
}
.sr-only {
padding: 0 !important;
}
.tab-pane {
padding-top: map-get($spacers, 4);
}
.navbar-dark .custom-select {
background-color: gray("900");
color: gray("500");
border: $custom-select-border-width solid gray("500");
}
h3, .h3 {
margin-top: map-get($spacers, 5);
}