32 lines
441 B
SCSS
32 lines
441 B
SCSS
.jet-countdown-timer {
|
|
display: flex;
|
|
flex-flow: row wrap;
|
|
justify-content: center;
|
|
align-items: center;
|
|
|
|
&__item {
|
|
display: flex;
|
|
flex-flow: column nowrap;
|
|
justify-content: center;
|
|
align-items: stretch;
|
|
text-align: center;
|
|
margin: 5px;
|
|
}
|
|
|
|
&__separator {
|
|
display: none;
|
|
* + & {
|
|
display: block;
|
|
}
|
|
}
|
|
|
|
&__digit {
|
|
display: inline-block;
|
|
}
|
|
}
|
|
|
|
.jet-countdown-timer-message {
|
|
display: none;
|
|
text-align: center;
|
|
}
|