feat: change API router structure

This commit is contained in:
2025-02-11 14:14:23 +01:00
parent 55b7b6f206
commit e89a2eea20
5 changed files with 55 additions and 21 deletions

View File

@@ -60,15 +60,6 @@ h3 {
}
#control-panel {
display: flex;
flex-direction: column;
input {
margin: auto
}
}
.container {
display: flex;
flex-wrap: nowrap;
@@ -138,7 +129,43 @@ button {
z-index: 1;
}
#control-panel {
display: grid;
overflow: hidden;
margin: auto;
gap: 16px;
grid-template-columns: repeat(3, 1fr);
}
.opened {
max-height: 100vw;
transition: max-height 1s ease-in;
}
.closed {
max-height: 0px;
transition: max-height 0.5s ease-out;
}
.control {
display: flex;
flex-direction: column;
align-items: center;
border: 1px solid #404040;
padding: 8px;
}
@media only screen and (max-width: 1000px) {
#control-panel {
grid-template-columns: repeat(2, 1fr);
}
}
@media only screen and (max-width: 768px) {
#control-panel {
grid-template-columns: 1fr;
}
.submit_text {
display: none;
}