Update v1.0.0-beta.13
All checks were successful
continuous-integration/drone/push Build is passing

Several modifications made to the API and several bug fixes
This commit is contained in:
2024-06-02 18:13:28 +02:00
parent f2d244c95a
commit ce8f1bbbac
21 changed files with 1228 additions and 170 deletions

View File

@@ -117,6 +117,7 @@
background-color: #5b5b82;
}
body.dark-theme .navbar-toggler-icon {
filter: invert(1);
}
@@ -168,3 +169,32 @@ body.dark-theme .navbar-toggler-icon {
padding: 0.5em;
}
.custom-dropdown,
.animated-button {
position: relative;
background: #1d2429;
border: none;
cursor: pointer;
padding: 10px 20px;
font-size: 1em;
color: #17a2b8;
transition: all 0.3s ease;
}
body.white-theme .custom-dropdown,
body.white-theme .animated-button {
color: #6c757d;
background: #e9ecef;
}
.custom-dropdown:hover,
.animated-button:hover {
background: #343a40;
color: #fff;
}
body.white-theme .custom-dropdown:hover,
body.white-theme .animated-button:hover {
background: #343a40;
color: #fff;
}