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

42 lines
627 B
CSS
Raw Normal View History

.mobileBoardButtons {
text-align: center;
margin: 10px 0;
}
.mobileBoardButtons button {
margin: 0 2px;
2024-04-03 22:52:27 +02:00
text-transform: capitalize;
}
.mobileBoardButtons a, .desktopBoardButtons a {
all: unset;
}
.showBlockedButton {
color: var(--button-desktop-text-color);
}
.showBlockedButton:hover {
color: var(--button-desktop-text-color-hover);
cursor: pointer;
}
2024-05-31 18:18:42 +02:00
.mobileBoardButtons .options {
padding: 10px 0;
}
@media (max-width: 640px) {
.desktopBoardButtons {
display: none;
}
}
@media (min-width: 640px) {
.mobileBoardButtons {
display: none;
}
2024-03-22 13:06:50 +01:00
2024-05-31 18:18:42 +02:00
.rightSideButtons {
2024-03-22 13:06:50 +01:00
float: right;
}
}