2019-01-02 00:11:47 +01:00
|
|
|
.clearfix {
|
|
|
|
@include clearfix();
|
|
|
|
}
|
|
|
|
|
|
|
|
.nice-padding {
|
2022-03-15 14:21:06 +01:00
|
|
|
padding-inline-start: $mobile-nice-padding;
|
|
|
|
padding-inline-end: $mobile-nice-padding;
|
2019-01-02 00:11:47 +01:00
|
|
|
|
|
|
|
@include media-breakpoint-up(sm) {
|
2022-03-15 14:21:06 +01:00
|
|
|
padding-inline-start: $desktop-nice-padding;
|
|
|
|
padding-inline-end: $desktop-nice-padding;
|
2019-01-02 00:11:47 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@include media-breakpoint-up(sm) {
|
|
|
|
.divider-before {
|
2022-03-15 14:21:06 +01:00
|
|
|
border-inline-start: 1px solid $color-grey-4;
|
2019-01-02 00:11:47 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.divider-after {
|
2022-03-15 14:21:06 +01:00
|
|
|
border-inline-end: 1px solid $color-grey-4;
|
2022-02-04 12:57:55 +01:00
|
|
|
}
|
2019-01-02 00:11:47 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
body.reordering {
|
|
|
|
overflow: visible;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Show a transparency grid in background
|
|
|
|
.show-transparency {
|
|
|
|
background: url('#{$images-root}transparency.svg');
|
|
|
|
}
|
|
|
|
|
|
|
|
// make a block-level element inline
|
|
|
|
.inline {
|
|
|
|
display: inline;
|
|
|
|
}
|
|
|
|
|
|
|
|
.inline-block {
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
|
|
|
|
.block {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
.unlist {
|
|
|
|
@include unlist();
|
|
|
|
}
|
|
|
|
|
|
|
|
// utility class to allow things to be scrollable if their contents can't wrap more nicely
|
|
|
|
.overflow {
|
|
|
|
overflow: auto;
|
|
|
|
}
|