mirror of
https://github.com/Retrospring/retrospring.git
synced 2025-02-13 21:33:20 +01:00
WIP: Add initial overrides for Bootstrap 4 styling
This commit is contained in:
parent
8d9f1d5efb
commit
711d6a9f4e
4 changed files with 19 additions and 1 deletions
|
@ -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';
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
body {
|
||||
overflow-y: scroll;
|
||||
word-wrap: break-word;
|
||||
background-color: #fafafa;
|
||||
background-color: $gray-100;
|
||||
}
|
||||
|
||||
@import "scss/flags";
|
||||
|
|
4
app/assets/stylesheets/overrides/_card.scss
Normal file
4
app/assets/stylesheets/overrides/_card.scss
Normal file
|
@ -0,0 +1,4 @@
|
|||
.card {
|
||||
margin-bottom: map-get($spacers, 3);
|
||||
box-shadow: $box-shadow-sm;
|
||||
}
|
8
app/assets/stylesheets/overrides/_variables.scss
Normal file
8
app/assets/stylesheets/overrides/_variables.scss
Normal file
|
@ -0,0 +1,8 @@
|
|||
// Colors
|
||||
$primary: #5e35b1;
|
||||
|
||||
// Cards
|
||||
$card-border-width: 0;
|
||||
|
||||
// List Groups
|
||||
$list-group-border-width: 0;
|
Loading…
Reference in a new issue