mirror of https://github.com/snachodog/mybuddy.git
38 lines
760 B
SCSS
38 lines
760 B
SCSS
@use 'sass:map';
|
|
|
|
// Baby Buddy site-wide custom styles.
|
|
|
|
// Remove extra margin below site breadcrumb.
|
|
.breadcrumb {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
// Extra-small button.
|
|
.btn-xs {
|
|
@include button-size(.2rem, .12rem, .75rem, .2rem);
|
|
}
|
|
|
|
// Right align main dropdown menu.
|
|
.dropdown-menu-end {
|
|
right: 0;
|
|
left: auto; // Reset the default from `.dropdown-menu`
|
|
}
|
|
|
|
// PullToRefresh elements.
|
|
.ptr--ptr {
|
|
background: map.get($theme-colors, 'dark');
|
|
.ptr--text, .ptr--icon {
|
|
// "!important" must be used to override inline styling from JS.
|
|
color: map.get($theme-colors, 'light') !important;
|
|
}
|
|
}
|
|
|
|
// Larger icon variant.
|
|
.icon-2x {
|
|
font-size: 1.65em;
|
|
}
|
|
|
|
// All modals
|
|
.modal-content {
|
|
color: map.get($theme-colors, 'dark');
|
|
} |