mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 01:54:15 +00:00
24 lines
520 B
SCSS
24 lines
520 B
SCSS
// Add any global css for the theme here
|
|
|
|
// imports the base global style
|
|
@import '../../../styles/_global-styles.scss';
|
|
|
|
.facet-filter, .setting-option, .advanced-search {
|
|
background-color: var(--bs-light);
|
|
border-radius: var(--bs-border-radius);
|
|
|
|
&.p-3 {
|
|
// Needs !important because the original bootstrap class uses it
|
|
padding-top: 0.5rem !important;
|
|
padding-bottom: 0.5rem !important;
|
|
}
|
|
|
|
.badge-secondary {
|
|
background-color: var(--bs-primary);
|
|
}
|
|
|
|
h4, .h4 {
|
|
font-size: 1.1rem
|
|
}
|
|
}
|