This commit is contained in:
Tom (plebeius.eth)
2024-06-01 18:13:41 +02:00
parent 911ec8f65f
commit ee69ab60ed
6 changed files with 86 additions and 52 deletions
@@ -25,6 +25,24 @@
padding: 10px 0;
}
.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;
@@ -35,8 +53,4 @@
.mobileBoardButtons {
display: none;
}
.rightSideButtons {
float: right;
}
}
}