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

55 lines
755 B
SCSS
Raw Normal View History

2018-06-03 05:58:54 +02:00
.row {
padding-bottom: 2em;
}
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 {
align-self: flex-start;
width: 30%;
}
.row-labeled-content {
align-self: center;
width: 70%;
}
2018-06-11 01:07:15 +02:00
.row-labeled-alt {
display: column;
flex-direction: row;
flex-wrap: nowrap;
justify-content: flex-start;
.row-labeled-label {
align-self: flex-start;
width: 100%;
color: $grey;
font-size: 12px;
}
.row-labeled-content {
align-self: center;
width: 100%;
}
}
2018-06-11 01:07:15 +02:00
@media (max-width: $break-point-medium ) {
.row-labeled {
flex-direction: column;
}
.row-labeled-label {
width: 100%;
}
.row-labeled-content {
width: 100%;
}
}