spee.ch/client/scss/_row.scss

35 lines
515 B
SCSS
Raw Normal View History

2018-06-02 20:58:54 -07:00
.row {
2018-11-08 19:44:59 -05:00
margin-bottom: 1.2em;
2018-06-02 20:58:54 -07:00
}
2018-06-08 08:50:25 -07:00
.row-labeled {
display: flex;
flex-direction: row;
flex-wrap: nowrap;
justify-content: flex-start;
2018-11-10 14:59:53 -05:00
padding-bottom: $tertiary-padding;
2018-06-08 08:50:25 -07:00
}
.row-labeled-label {
width: 30%;
2018-11-08 19:44:59 -05:00
display: flex;
align-items: center;
flex: 1;
2018-06-08 08:50:25 -07:00
}
.row-labeled-content {
align-self: center;
width: 70%;
}
2018-06-10 16:07:15 -07:00
2018-11-08 19:44:59 -05:00
@media (max-width: $break-point-tablet ) {
2018-06-10 16:07:15 -07:00
.row-labeled {
flex-direction: column;
}
.row-labeled-label {
width: 100%;
}
.row-labeled-content {
width: 100%;
}
2018-11-10 14:59:53 -05:00
}