2023-03-25 19:57:12 +00:00
|
|
|
@use 'sass:map';
|
|
|
|
|
2017-10-22 18:00:42 +00:00
|
|
|
// Baby Buddy site-wide custom styles.
|
2017-10-11 17:54:04 +00:00
|
|
|
|
2017-12-06 18:01:41 +00:00
|
|
|
// Remove extra margin below site breadcrumb.
|
|
|
|
.breadcrumb {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
|
2017-12-05 15:29:14 +00:00
|
|
|
// Extra-small button.
|
|
|
|
.btn-xs {
|
2023-03-25 19:57:12 +00:00
|
|
|
@include button-size(.2rem, .12rem, .75rem, .2rem);
|
2017-12-05 15:29:14 +00:00
|
|
|
}
|
|
|
|
|
2020-01-26 17:26:54 +00:00
|
|
|
// Right align main dropdown menu.
|
2023-07-13 17:27:32 +00:00
|
|
|
.dropdown-menu-end {
|
2017-12-05 15:29:14 +00:00
|
|
|
right: 0;
|
|
|
|
left: auto; // Reset the default from `.dropdown-menu`
|
|
|
|
}
|
|
|
|
|
2020-02-04 18:52:05 +00:00
|
|
|
// PullToRefresh elements.
|
|
|
|
.ptr--ptr {
|
2023-03-25 19:57:12 +00:00
|
|
|
background: map.get($theme-colors, 'dark');
|
2020-02-04 18:52:05 +00:00
|
|
|
.ptr--text, .ptr--icon {
|
|
|
|
// "!important" must be used to override inline styling from JS.
|
2023-03-25 19:57:12 +00:00
|
|
|
color: map.get($theme-colors, 'light') !important;
|
2020-02-15 05:26:25 +00:00
|
|
|
}
|
|
|
|
}
|
2021-08-29 21:56:21 +00:00
|
|
|
|
2021-08-30 02:35:44 +00:00
|
|
|
// Larger icon variant.
|
2021-08-29 21:56:21 +00:00
|
|
|
.icon-2x {
|
2021-08-30 02:35:44 +00:00
|
|
|
font-size: 1.65em;
|
2021-08-29 21:56:21 +00:00
|
|
|
}
|
2022-02-27 01:19:19 +00:00
|
|
|
|
|
|
|
// All modals
|
|
|
|
.modal-content {
|
2023-03-25 19:57:12 +00:00
|
|
|
color: map.get($theme-colors, 'dark');
|
2022-02-27 01:19:19 +00:00
|
|
|
}
|