mirror of
https://github.com/lichess-org/lila.git
synced 2026-05-26 13:51:00 +00:00
66 lines
976 B
SCSS
66 lines
976 B
SCSS
.forum-topic {
|
|
h1 {
|
|
display: flex;
|
|
unicode-bidi: plaintext;
|
|
}
|
|
|
|
&.topic-form {
|
|
.warning {
|
|
@extend %box-radius;
|
|
|
|
border-radius: 20px;
|
|
padding: 1rem;
|
|
background: $m-bad_bg--mix-15;
|
|
border: 1px solid $c-error;
|
|
text-align: center;
|
|
font-size: 1.3em;
|
|
margin-bottom: 2rem;
|
|
|
|
h2 {
|
|
font-weight: bold;
|
|
color: $c-error;
|
|
}
|
|
|
|
h2,
|
|
p {
|
|
margin: 1.5rem;
|
|
}
|
|
}
|
|
}
|
|
|
|
&__posts {
|
|
margin-top: 2rem;
|
|
margin-bottom: 2rem;
|
|
}
|
|
|
|
&__actions {
|
|
@extend %flex-between;
|
|
|
|
margin-top: 1rem;
|
|
margin-bottom: 2rem;
|
|
|
|
div {
|
|
@extend %flex-wrap;
|
|
|
|
.button {
|
|
margin-inline-start: 1rem;
|
|
}
|
|
|
|
.unsub.on .off,
|
|
.unsub.off .on {
|
|
display: none;
|
|
}
|
|
}
|
|
}
|
|
|
|
.reply label[for='form3-text'] {
|
|
display: none;
|
|
}
|
|
|
|
small .space-between {
|
|
margin-top: 0.5rem;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
}
|
|
}
|