WIP: Add initial overrides for Bootstrap 4 styling

This commit is contained in:
Andreas Nedbal 2020-04-26 21:48:25 +02:00
parent 8d9f1d5efb
commit 711d6a9f4e
4 changed files with 19 additions and 1 deletions

View file

@ -45,8 +45,14 @@ $navbar-inverse-toggle-hover-bg: #512da8;
$navbar-inverse-toggle-icon-bar-bg: #7e57c2;
$navbar-inverse-toggle-border-color: #512da8;
@import "overrides/variables";
@import "bootstrap";
@import "overrides/card";
body { padding-top: 50px; }
@import 'bootstrap-datetimepicker';

View file

@ -3,7 +3,7 @@
body {
overflow-y: scroll;
word-wrap: break-word;
background-color: #fafafa;
background-color: $gray-100;
}
@import "scss/flags";

View file

@ -0,0 +1,4 @@
.card {
margin-bottom: map-get($spacers, 3);
box-shadow: $box-shadow-sm;
}

View file

@ -0,0 +1,8 @@
// Colors
$primary: #5e35b1;
// Cards
$card-border-width: 0;
// List Groups
$list-group-border-width: 0;