19 lines
297 B
SCSS
19 lines
297 B
SCSS
|
.read-here {
|
||
|
display: flex;
|
||
|
align-content: center;
|
||
|
flex-flow: row;
|
||
|
.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;
|
||
|
}
|
||
|
}
|