mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-18 07:01:58 +08:00
31 lines
752 B
SCSS
31 lines
752 B
SCSS
@import 'constants';
|
|
@import 'react-bootstrap-timezone-picker/dist/react-bootstrap-timezone-picker.min.css';
|
|
@import '~react-bootstrap-table/dist/react-bootstrap-table.min';
|
|
|
|
body {
|
|
background-color: $color-concrete;
|
|
color: $color-emperor;
|
|
font-family: "Open Sans", Arial, Helvetica, sans-serif;
|
|
font-size: 13px;
|
|
}
|
|
|
|
.label-primary {
|
|
background-color: $color-theme-primary;
|
|
}
|
|
|
|
.btn-primary {
|
|
background-color: $color-theme-secondary;
|
|
border-color: $primary-hover-color;
|
|
margin-right: 7px;
|
|
&:hover {
|
|
background-color: $primary-hover-color;
|
|
}
|
|
}
|
|
|
|
// // fixes issue with dropdown in datatable
|
|
.react-bootstrap-table-dropdown-fix {
|
|
overflow: inherit !important;
|
|
& .open > .dropdown-menu {
|
|
position: relative !important;
|
|
}
|
|
}
|