21 lines
339 B
SCSS
21 lines
339 B
SCSS
.date-split {
|
|
display: flex;
|
|
align-content: center;
|
|
flex-flow: row;
|
|
align-items: flex-end;
|
|
height: 20px;
|
|
.line {
|
|
height: 1px;
|
|
background-color: #cccccc;
|
|
width: 40%;
|
|
flex: 1 1 auto;
|
|
margin-bottom: 10px;
|
|
}
|
|
.date {
|
|
width: 160px;
|
|
font-size: 13px;
|
|
text-align: center;
|
|
font-weight: 600;
|
|
}
|
|
}
|