Files
5chan/src/components/post-form/post-form.module.css
T

32 lines
541 B
CSS
Raw Normal View History

2024-03-21 15:21:33 +01:00
.postFormButtonDesktop {
2024-03-20 13:00:11 +01:00
font-size: var(--post-form-toggle-font-size);
font-weight: var(--post-form-toggle-font-weight);
text-align: center;
}
2024-03-21 15:21:33 +01:00
.postFormButtonMobile {
text-align: center;
padding-top: 9px;
2024-03-28 12:41:40 +01:00
padding-bottom: 0.5em;
2024-03-21 15:21:33 +01:00
}
.closed {
font-size: x-large;
text-align: center;
color: red;
font-weight: 700;
padding-top: 100px;
padding-bottom: 100px;
}
2024-03-21 15:21:33 +01:00
@media (max-width: 640px) {
.postFormButtonDesktop {
display: none;
}
}
2024-04-10 13:16:07 +02:00
@media (min-width: 640px) {
2024-03-21 15:21:33 +01:00
.postFormButtonMobile {
display: none;
}
2024-03-20 13:00:11 +01:00
}