Port 047338e684a3b8fb89080b3ecbbd2f7c831e9c16 to glitch-soc Signed-off-by: Claire <claire.github-309c@sitedethib.com>
48 lines
651 B
SCSS
48 lines
651 B
SCSS
.fieldList {
|
|
margin-top: 16px;
|
|
}
|
|
|
|
.fieldNumbersWrapper {
|
|
a {
|
|
font-weight: unset;
|
|
}
|
|
}
|
|
|
|
.modalCloseButton {
|
|
padding: 8px;
|
|
border-radius: 50%;
|
|
border: 1px solid var(--color-border-primary);
|
|
}
|
|
|
|
.modalTitle {
|
|
flex-grow: 1;
|
|
text-align: center;
|
|
}
|
|
|
|
.modalFieldsList {
|
|
padding: 24px;
|
|
}
|
|
|
|
.modalFieldItem {
|
|
&:not(:first-child) {
|
|
padding-top: 12px;
|
|
}
|
|
|
|
&:not(:last-child)::after {
|
|
content: '';
|
|
display: block;
|
|
border-bottom: 1px solid var(--color-border-primary);
|
|
margin-top: 12px;
|
|
}
|
|
|
|
dt {
|
|
color: var(--color-text-secondary);
|
|
font-size: 13px;
|
|
}
|
|
|
|
dd {
|
|
font-weight: 600;
|
|
font-size: 15px;
|
|
}
|
|
}
|