`scroll-container`, `is-fullwidth-label`, `is-block`, and `strike-through` were all removed in116ca29, `fa-download` was removed in3ee687f61
29 lines
432 B
SCSS
29 lines
432 B
SCSS
.file-name {
|
|
max-width: 24em;
|
|
width: 24em;
|
|
}
|
|
|
|
.separator {
|
|
display: flex;
|
|
align-items: center;
|
|
text-align: center;
|
|
color: darkgray;
|
|
font-size: 10px;
|
|
margin-top: 12px;
|
|
margin-bottom: 12px;
|
|
}
|
|
|
|
.separator::before,
|
|
.separator::after {
|
|
content: "";
|
|
flex: 1;
|
|
border-bottom: 1px solid darkgray;
|
|
}
|
|
|
|
.separator:not(:empty)::before {
|
|
margin-right: 0.25em;
|
|
}
|
|
|
|
.separator:not(:empty)::after {
|
|
margin-left: 0.25em;
|
|
}
|