spee.ch/client/scss/row/_row.scss

35 lines
543 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;
}
.row-labeled-label {
width: 30%;
2018-11-09 01:44:59 +01:00
display: flex;
align-items: center;
flex: 1;
//bad, fix this
.label { padding-top: 0; padding-bottom: 0; }
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-09 01:44:59 +01:00
}