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

57 lines
962 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;
}
2024-06-01 18:13:41 +02:00
.desktopBoardButtons {
display: flex;
align-items: center;
justify-content: space-between; /* Ensure elements are spaced out properly */
}
.desktopBoardButtons::after {
content: "";
display: table;
clear: both;
}
.desktopBoardButtons .rightSideButtons {
margin-left: auto; /* Push the right-side buttons to the right */
display: flex;
align-items: center;
}
@media (max-width: 640px) {
.desktopBoardButtons {
display: none;
}
}
@media (min-width: 640px) {
.mobileBoardButtons {
display: none;
}
2024-06-01 18:13:41 +02:00
}