spee.ch/client/scss/components/_row.scss

36 lines
456 B
SCSS
Raw Normal View History

2018-06-02 20:58:54 -07:00
.row {
padding-bottom: 2em;
}
2018-06-08 08:50:25 -07:00
.row-labeled {
display: flex;
flex-direction: row;
flex-wrap: nowrap;
justify-content: flex-start;
}
.row-labeled-label {
align-self: flex-start;
width: 30%;
}
.row-labeled-content {
align-self: center;
width: 70%;
}
2018-06-10 16:07:15 -07:00
@media (max-width: $break-point-medium ) {
.row-labeled {
flex-direction: column;
}
.row-labeled-label {
width: 100%;
}
.row-labeled-content {
width: 100%;
}
}