mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 07:50:51 +08:00
40 lines
596 B
SCSS
40 lines
596 B
SCSS
.d-time-input {
|
|
box-sizing: border-box;
|
|
|
|
.fields {
|
|
display: flex;
|
|
align-items: center;
|
|
border: 1px solid $primary-low;
|
|
|
|
.field {
|
|
text-align: center;
|
|
width: auto;
|
|
margin: 0;
|
|
border: none;
|
|
outline: none;
|
|
box-shadow: none;
|
|
width: 32px;
|
|
|
|
&.time {
|
|
width: 100%;
|
|
text-align: left;
|
|
}
|
|
|
|
&.hours,
|
|
&.minutes {
|
|
text-align: center;
|
|
width: 45px;
|
|
}
|
|
|
|
&.hours {
|
|
padding-right: 0;
|
|
}
|
|
|
|
&.minutes {
|
|
padding-left: 10px;
|
|
width: 55px;
|
|
}
|
|
}
|
|
}
|
|
}
|