Spaces:
Running
Running
File size: 681 Bytes
f2bee8a |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 |
@import "../../css/units.css";
@import "../../css/colors.css";
.input-group {
display: inline-flex;
flex-direction: row;
align-items: center;
}
.input-group-column {
display: inline-flex;
flex-direction: column;
align-items: flex-start;
}
.input-group-column span {
margin-bottom: .25rem;
}
.input-label, .input-label-secondary {
font-size: 0.625rem;
user-select: none;
cursor: default;
white-space: nowrap;
}
[dir="ltr"] .input-label, [dir="ltr"] .input-label-secondary {
margin-right: .5rem;
}
[dir="rtl"] .input-label, [dir="rtl"] .input-label-secondary {
margin-left: .5rem;
}
.input-label {
font-weight: bold;
}
|