feat: change API router structure
This commit is contained in:
45
src/App.css
45
src/App.css
@@ -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;
|
||||
}
|
||||
|
Reference in New Issue
Block a user