style: buttons tab page orders

This commit is contained in:
2025-01-27 17:01:57 -03:00
parent 2b838cda4f
commit 7005796e7a
6 changed files with 35 additions and 6 deletions

Binary file not shown.

View File

@@ -8,6 +8,18 @@
} }
} }
@keyframes jump {
0% {
transform: scale(0.0);
}
70% {
transform: scale(1.2);
}
100% {
transform: scale(1);
}
}
.loading { .loading {
align-items: center; align-items: center;
@@ -31,6 +43,7 @@
transition: transform 0.2s; transition: transform 0.2s;
padding: 15px; padding: 15px;
margin-top: 15px; margin-top: 15px;
animation: jump 0.7s ;
} }
h4{ h4{
@@ -40,24 +53,29 @@
.tab { .tab {
display: flex; display: flex;
padding-top: 15px;
justify-content: space-between; justify-content: space-between;
overflow: auto; overflow: auto;
width: 100%; width: 100%;
border-bottom: 2px solid #cccccc93; border-bottom: 2px solid rgba(86, 187, 255, 0.192);
} }
.tab button { .tab button {
width: 24%; width: 24%;
background-color: #4446d636; background-color: #999aeb00;
border: none;
cursor: pointer;
padding: 10px 10px; padding: 10px 10px;
transition: 0.3s; transition: 0.6s;
border-radius: 20px 20px 0px 0px; border-radius: 20px 20px 0px 0px;
align-items: center;
border-color: rgba(86, 187, 255, 0.192);
line-height: 20px;
} }
.tab button.active { .tab button.active {
background-color: #4446d6; border-radius: 8px 8px 0px 0px;
border-color: rgba(86, 187, 255, 0.192);
background: var(--main-gradient);
box-shadow: 0px 0px 15px rgba(86, 187, 255, 0.815);
} }
.tabcontent { .tabcontent {
@@ -65,3 +83,14 @@
padding: 6px 12px; padding: 6px 12px;
} }
#list-orders{
justify-self: center;
width: 30%;
}
@media (max-width: 768px) {
#list-orders{
width: 100%;
}
}