2024-03-22 12:09:17 +01:00
|
|
|
.mobileBoardButtons {
|
|
|
|
|
text-align: center;
|
2024-05-31 15:16:21 +02:00
|
|
|
margin: 10px 0;
|
2024-03-22 12:09:17 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mobileBoardButtons button {
|
|
|
|
|
margin: 0 2px;
|
2024-04-03 22:52:27 +02:00
|
|
|
text-transform: capitalize;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mobileBoardButtons a, .desktopBoardButtons a {
|
|
|
|
|
all: unset;
|
2024-03-22 12:09:17 +01:00
|
|
|
}
|
|
|
|
|
|
2024-05-30 18:01:37 +02:00
|
|
|
.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;
|
|
|
|
|
}
|
|
|
|
|
|
2024-03-22 12:09:17 +01:00
|
|
|
@media (max-width: 640px) {
|
|
|
|
|
.desktopBoardButtons {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media (min-width: 640px) {
|
|
|
|
|
.mobileBoardButtons {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
2024-06-01 18:13:41 +02:00
|
|
|
}
|