Files
enfrancais-app/src/assets/scss/base/_bootstrap-overrides.scss
T
2021-06-30 21:09:02 +02:00

58 lines
921 B
SCSS

legend {
font-weight: $font-weight-bold;
}
a,
a:hover {
color: inherit;
}
.dropdown-menu {
border: $line;
padding: 0;
margin-left: -#{$header-spacer-sm};
margin-top: 10px;
.dropdown-item {
font-size: $font-size-sm;
padding: .25rem 1.25rem .25rem .5rem !important;
}
@include media-breakpoint-up($layout-bp) {
margin-left: -#{$header-spacer};
.dropdown-item {
font-size: $font-size-base;
padding: .25rem $header-spacer;
}
}
}
.popover {
font-family: $font-family-text;
.arrow {
visibility: hidden;
}
&-body {
color: inherit;
}
}
.btn {
font-family: $font-family-base;
}
.badge {
font-size: inherit;
}
@each $color, $value in $theme-colors {
@if $color == 'depart' {
@include text-emphasis-variant(".text-#{$color}", $black, true);
} @else {
@include text-emphasis-variant(".text-#{$color}", darken($value, 30%), true);
}
}