48 lines
658 B
SCSS
48 lines
658 B
SCSS
.file-name {
|
|
max-width: 24em;
|
|
width: 24em;
|
|
}
|
|
|
|
.scroll-container {
|
|
width: 100%;
|
|
overflow-x: auto;
|
|
overflow-y: auto;
|
|
max-height: 603px;
|
|
}
|
|
|
|
.is-fullwidth-label {
|
|
width: 100%;
|
|
}
|
|
|
|
.is-block {
|
|
display: block;
|
|
}
|
|
|
|
.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;
|
|
}
|
|
|
|
.strike-through {
|
|
text-decoration: line-through;
|
|
}
|