alterar modal dialog para popover em addProduct

This commit is contained in:
2025-02-21 16:59:34 -03:00
parent fdb9d9e453
commit baafa4cdec
12 changed files with 111 additions and 26 deletions

View File

@@ -15,19 +15,80 @@
max-width: 800px;
/* margin: 0 auto; */
}
.card-product {
height: 180px;
width: 200px;
padding: 10px;
align-items: center;
align-content: center;
text-align: center;
line-height: 1.5;
background: var(--main-gradient);
box-shadow: 3px 3px 10px rgba(2, 2, 2, 0.678);
border-radius: 5px;
}
.card-product:hover {
transform: scale(1.05);
box-shadow: 0px 0px 10px rgba(86, 187, 255, 0.815);
}
transform: scale(1.05);
transition: transform 0.4s;
box-shadow: 0px 0px 10px rgba(86, 187, 255, 0.815);
}
table td th {
text-align: center;
}
.popover{
width: 98%;
height: 98%;
max-width: 800px;
top: 20px;
left: 25%;
padding: 20px;
/* background-color: #f2f2f29d; */
border-radius: 15px;
border: none;
box-shadow: 0px 0px 8px rgba(143, 143, 143, 0.2);
text-align: justify;
line-height: 50px;
font-size: 18px;
font-weight: bold;
/* color: #333; */
transition: transform 0.2s;
animation: jump 0.5s;
}
.popover::backdrop {
background-color: rgba(0, 0, 0, 0.315);
backdrop-filter: blur(5px);
/* animation: jump 0.2s; */
}
@media screen and (max-width: 730px) {
.popover{
width: 98%;
height: 98%;
max-width: 800px;
top: 20px;
left: 10px;
}
.card-product {
height: 100%;
width: 100%;
max-width: 100%;
text-align: center;
background: var(--main-gradient);
box-shadow: 3px 3px 10px rgba(2, 2, 2, 0.678);
font-size: 14px;
}
}