27 lines
410 B
SCSS
27 lines
410 B
SCSS
@include breakpoint(small) {
|
|
dl {
|
|
.property {
|
|
display:flex;
|
|
flex-direction:column;
|
|
dt {
|
|
min-width: unset;
|
|
max-width: unset;
|
|
width: unset;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
@include breakpoint(medium) {
|
|
dl {
|
|
.property {
|
|
display:flex;
|
|
flex-direction:row;
|
|
dt {
|
|
min-width: 14rem;
|
|
max-width: 14rem;
|
|
width: 14rem;
|
|
}
|
|
}
|
|
}
|
|
}
|