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

22 lines
378 B
CSS

.postFormButtonDesktop {
font-size: var(--post-form-toggle-font-size);
font-weight: var(--post-form-toggle-font-weight);
text-align: center;
}
.postFormButtonMobile {
text-align: center;
padding-top: 9px;
}
@media (max-width: 640px) {
.postFormButtonDesktop {
display: none;
}
}
@media (min-width: 641px) {
.postFormButtonMobile {
display: none;
}
}