30 lines
509 B
SCSS
30 lines
509 B
SCSS
|
// Bootstrap overrides for this template
|
||
|
.text-primary {
|
||
|
color: $theme-primary !important;
|
||
|
}
|
||
|
|
||
|
.no-gutter > [class*='col-'] {
|
||
|
padding-right: 0;
|
||
|
padding-left: 0;
|
||
|
}
|
||
|
|
||
|
.btn-default {
|
||
|
@include button-variant($gray-darker, white, white);
|
||
|
}
|
||
|
|
||
|
.btn-primary {
|
||
|
@include button-variant(white, $theme-primary, $theme-primary);
|
||
|
}
|
||
|
|
||
|
.btn {
|
||
|
font-weight: 700;
|
||
|
text-transform: uppercase;
|
||
|
border: none;
|
||
|
border-radius: 300px;
|
||
|
@include sans-serif-font;
|
||
|
}
|
||
|
|
||
|
.btn-xl {
|
||
|
padding: 15px 30px;
|
||
|
}
|