added request to api

This commit is contained in:
2025-09-19 17:20:05 -06:00
parent 33060b5dbb
commit ca67be2de3
14 changed files with 296 additions and 254 deletions
+6 -3
View File
@@ -1,7 +1,8 @@
.messageBox {
display: flex;
position: absolute;
padding: 0.5rem 1.25rem;
border-radius: 4px;
border-radius: 0 4px 4px 0;
font-weight: bold;
font-size: 1.5rem;
text-align: center;
@@ -10,13 +11,15 @@
top: 0;
left: 0;
width: 100%;
max-width: 200px;
max-height: min-content;
opacity: 0.9;
transition: opacity 0.5s ease, transform 0.5s ease;
}
.messageBox.hidden {
opacity: 0;
pointer-events: none;
transition: opacity 1s ease-out;
transition: opacity 1s ease-out,transform 0.5 ease;
}
.success {