feat: implement shopping cart module with order management and discount components
All checks were successful
Build (develop) / Promote (main) / build-and-push-deploy (push) Successful in 6m18s

This commit is contained in:
Luis Eduardo Estevao
2026-04-19 17:53:03 -03:00
parent 4f5e2e5944
commit bbb5d68af1
8 changed files with 182 additions and 172 deletions

View File

@@ -991,6 +991,26 @@ kendo-treeview:hover {
}
}
.loading-overlay {
position: fixed;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
background-color: rgba(255, 255, 255, 0.7);
z-index: 9999;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
.loading-content {
text-align: center;
font-weight: 600;
color: #2d2e83;
}
/* Responsividade para desktops maiores (largura > 1200px) */
@media (min-width: 1200px) {
.card-resume {