mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 05:47:31 +08:00
d8705ee0ad
Renames the new `relative-time` component to `relative-time-picker` to avoid CSS class conflict with local-dates.
19 lines
222 B
SCSS
19 lines
222 B
SCSS
.relative-time-picker {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
|
|
input[type="text"] {
|
|
flex: 1;
|
|
}
|
|
|
|
.select-kit {
|
|
flex: 1;
|
|
width: auto;
|
|
margin-left: 5px;
|
|
}
|
|
|
|
&:last-child {
|
|
margin-right: auto;
|
|
}
|
|
}
|