spee.ch/client/scss/_row.scss

35 lines
515 B
SCSS
Raw Normal View History

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