Files
5chan/src/components/board-buttons/board-buttons.module.css
T

34 lines
490 B
CSS
Raw Normal View History

.mobileBoardButtons {
text-align: center;
margin-top: 9px;
}
.mobileBoardButtons button {
margin: 0 2px;
2024-04-03 22:52:27 +02:00
text-transform: capitalize;
}
.mobileBoardButtons a, .desktopBoardButtons a {
all: unset;
}
.mobilePostPageButtonsSecondRow {
padding-top: 5px;
padding-bottom: 20px;
}
@media (max-width: 640px) {
.desktopBoardButtons {
display: none;
}
}
@media (min-width: 640px) {
.mobileBoardButtons {
display: none;
}
2024-03-22 13:06:50 +01:00
.subscribeButton {
float: right;
}
}