bug: page orders resolvido

This commit is contained in:
2025-01-22 19:08:34 -03:00
parent 04e78a0f79
commit 80aebd2030
7 changed files with 204 additions and 190 deletions

View File

@@ -1,24 +1,22 @@
/* .grid-container {
display: grid;
grid-template-columns: repeat(3, 2fr);
gap: 20px;
max-width: 800px;
margin: 0 auto;
}
.card {
width: 120px;
height: 120px;
background-color: #f2f2f2;
border-radius: 15px;
box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
text-align: center;
line-height: 120px;
font-size: 20px;
font-weight: bold;
color: #333;
transition: transform 0.2s;
}*/
@keyframes girar {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
.loading {
align-items: center;
align-content: center;
align-self: center;
margin: 0 auto;
animation: girar 4s infinite linear;
}
.m-card {
/* width: 50px; */
height: 100%;
@@ -40,7 +38,6 @@
}
.tab {
display: flex;
justify-content: space-between;
@@ -49,7 +46,6 @@
border-bottom: 2px solid #cccccc93;
}
/* Estilo para cada aba */
.tab button {
width: 24%;
background-color: #4446d636;
@@ -60,15 +56,12 @@
border-radius: 20px 20px 0px 0px;
}
/* Estilo para a aba ativa */
.tab button.active {
background-color: #4446d6;
}
/* Estilo para o conteúdo das abas */
.tabcontent {
/* display: none; */
display: none;
padding: 6px 12px;
/* border: 1px solid #ccc; */
/* border-top: none; */
}