mirror of
https://github.com/bitsocialnet/5chan.git
synced 2026-08-03 07:41:04 +02:00
22 lines
378 B
CSS
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;
|
|
}
|
|
} |