I am giving up on using ORM...

Lets go back to the good old sql query days ;)
This commit is contained in:
Donald Zou
2024-02-11 23:53:51 -05:00
parent 6b6ad05e3a
commit 1e88491ca1
11 changed files with 665 additions and 171 deletions

View File

@@ -603,7 +603,6 @@ main {
.conf_card:hover {
border-color: #007bff;
cursor: pointer;
}
.info_loading {
@@ -1051,4 +1050,31 @@ pre.index-alert {
.totp{
font-family: var(--bs-font-monospace);
}
.message-move, /* apply transition to moving elements */
.message-enter-active,
.message-leave-active {
transition: all 0.5s ease;
}
.message-enter-from,
.message-leave-to {
filter: blur(2px);
opacity: 0;
}
.message-enter-from{
transform: translateY(-30px) scale(0.7);
}
.message-leave-to{
transform: translateY(30px);
}
/* ensure leaving items are taken out of layout flow so that moving
animations can be calculated correctly. */
.message-leave-active {
position: absolute;
}