33 lines
554 B
SCSS
Executable File
33 lines
554 B
SCSS
Executable File
@import "/imports/ui/stylesheets/variables/breakpoints";
|
|
@import "/imports/ui/components/actions-bar/styles.scss";
|
|
|
|
.imageSize {
|
|
height: 4rem;
|
|
@include mq($small-only) {
|
|
margin: auto 1rem;
|
|
}
|
|
}
|
|
|
|
.label {
|
|
font-size: var(--font-size-small);
|
|
white-space: nowrap;
|
|
margin-top: .5rem;
|
|
color: inherit;
|
|
|
|
@include mq($small-only) {
|
|
margin-top: 0;
|
|
font-size: 90%;
|
|
}
|
|
}
|
|
|
|
.item {
|
|
display: flex;
|
|
justify-content: flex-start;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
|
|
@include mq($small-only) {
|
|
flex-direction: row;
|
|
}
|
|
}
|