26 lines
529 B
SCSS
26 lines
529 B
SCSS
@import "colors";
|
|
@import "constants";
|
|
|
|
.backoffice-title {
|
|
font-size: 30px;
|
|
font-weight: normal;
|
|
margin-top: 3 * $default-spacer;
|
|
margin-bottom: 3 * $default-spacer;
|
|
}
|
|
|
|
.backoffice-header {
|
|
background-color: $light-grey;
|
|
padding-top: $default-padding;
|
|
margin-bottom: 2 * $default-spacer;
|
|
border-bottom: 1px solid $border-grey;
|
|
|
|
.container {
|
|
margin-bottom: -1px;
|
|
}
|
|
}
|
|
|
|
.mixed-buttons-bar .button {
|
|
// Needed so that buttons without text
|
|
// are ligned with those that have text
|
|
vertical-align: top;
|
|
}
|