style: add create board button and edit boards button

This commit is contained in:
Tom (plebeius.eth)
2024-06-28 21:21:21 +02:00
parent 9241daed34
commit 21794384be
4 changed files with 55 additions and 3 deletions
@@ -1,6 +1,6 @@
.mobileBoardButtons {
text-align: center;
margin: 10px 0;
margin-bottom: 10px;
}
.mobileBoardButtons button {
@@ -51,14 +51,33 @@
padding-top: 15px;
}
.createBoardButton {
text-align: center;
font-size: 10px;
}
.createBoardButton a {
text-decoration: none;
color: var(--button-desktop-text-color);
}
.createBoardButton a:hover {
cursor: pointer;
color: var(--button-desktop-text-color-hover);
}
@media (max-width: 640px) {
.desktopBoardButtons {
display: none;
}
.createBoardButton {
display: inline-flex;
}
}
@media (min-width: 640px) {
.mobileBoardButtons {
display: none;
}
}
}