27 lines
303 B
SCSS
27 lines
303 B
SCSS
|
// Fonts
|
||
|
@import url("https://fonts.bunny.net/css?family=Nunito");
|
||
|
|
||
|
// Variables
|
||
|
@import "variables";
|
||
|
|
||
|
// Bootstrap
|
||
|
@import "bootstrap/scss/bootstrap";
|
||
|
|
||
|
h1,
|
||
|
h2,
|
||
|
h3,
|
||
|
h4,
|
||
|
h5,
|
||
|
h6 {
|
||
|
font-weight: 400 !important;
|
||
|
}
|
||
|
|
||
|
|
||
|
.pb-0 {
|
||
|
padding-bottom: 0 !important;
|
||
|
}
|
||
|
|
||
|
.mb-0 {
|
||
|
margin-bottom: 0 !important;
|
||
|
}
|