1
0
forked from noxious/client

Added logic that allows socket events to exist in sub directories, moved said events for better DX, added logics for tile management (upload & read), started working on (zone) object logics too

This commit is contained in:
2024-06-22 21:00:30 +02:00
parent 98e9ae1a80
commit 4372dc5430
7 changed files with 190 additions and 85 deletions

View File

@ -12,6 +12,9 @@ $blue-gray: #778899;
$cyan: #368f8b;
$dark-cyan: #376362;
$light-cyan: #00b3b3;
$bordeaux: #800020;
$dark-bordeaux: #4c0000;
$light-bordeaux: #cc0033;
$green: #09ad19;
// Fonts

View File

@ -79,11 +79,22 @@ button {
border-radius: 5px;
text-shadow: 0 3px 6px rgba($black, 0.2);
&:hover {
&.active, &:hover {
background-color: $cyan;
}
}
&.btn-bordeaux {
background-color: rgba($bordeaux, 0.5);
border: 1px solid $white;
border-radius: 5px;
text-shadow: 0 3px 6px rgba($black, 0.2);
&.active, &:hover {
background-color: $bordeaux;
}
}
&:hover {
cursor: pointer;
}