Purchase Order Delivery Address form style Added
This commit is contained in:
parent
0ca03c6e38
commit
ffeb7fed51
|
|
@ -647,12 +647,14 @@
|
|||
align-items: center;
|
||||
gap: 8px;
|
||||
background-color: #eab308;
|
||||
color: #000;
|
||||
color: #000000;
|
||||
padding: 8px 14px;
|
||||
border-radius: 8px;
|
||||
font-weight: 600;
|
||||
border-radius: 6px;
|
||||
font-weight: 500;
|
||||
cursor: pointer;
|
||||
transition: all 0.3s ease;
|
||||
height: max-content;
|
||||
font-family: "Poppins";
|
||||
}
|
||||
|
||||
/* Hover effect */
|
||||
|
|
@ -667,6 +669,52 @@
|
|||
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
|
||||
}
|
||||
|
||||
// deilivery Address
|
||||
|
||||
.Address-button {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
background-color: #0ea5e9;
|
||||
color: #ffffff;
|
||||
padding: 8px 14px;
|
||||
border-radius: 6px;
|
||||
font-weight: 500;
|
||||
cursor: pointer;
|
||||
transition: all 0.3s ease;
|
||||
height: max-content;
|
||||
font-family: "Poppins";
|
||||
}
|
||||
|
||||
/* Hover effect */
|
||||
.Address-button:hover {
|
||||
background-color: #0cabf4;
|
||||
transform: translateY(-2px);
|
||||
}
|
||||
|
||||
/* Active (click) effect */
|
||||
.Address-button:active {
|
||||
transform: translateY(0);
|
||||
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
|
||||
}
|
||||
|
||||
.deliveryaddress{
|
||||
display: flex;
|
||||
align-items: flex-start;
|
||||
flex-direction: column;
|
||||
background-color: #fff3f3;
|
||||
padding: 10px;
|
||||
border-radius: 4px;
|
||||
height: max-content;
|
||||
.deliveryaddress_edit{
|
||||
color: #0cabf4;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 5px;
|
||||
cursor: pointer;
|
||||
}
|
||||
}
|
||||
|
||||
.add-slot-header {
|
||||
font-size: 25px;
|
||||
font-weight: 600;
|
||||
|
|
@ -811,11 +859,6 @@
|
|||
}
|
||||
|
||||
.pricechangeTable {
|
||||
width: 83vw;
|
||||
scrollbar-width: thin;
|
||||
overflow-x: auto;
|
||||
overflow-y: auto;
|
||||
|
||||
.ant-input {
|
||||
padding: 4px 11px 4px 11px !important;
|
||||
width: 80px !important;
|
||||
|
|
@ -1342,12 +1385,6 @@ table {
|
|||
width: 100%;
|
||||
}
|
||||
|
||||
.pricechangedata {
|
||||
width: 100%;
|
||||
overflow: auto;
|
||||
scrollbar-width: thin;
|
||||
}
|
||||
|
||||
.ProductList-pwiseQrcode {
|
||||
height: max-content !important;
|
||||
max-height: 70vh;
|
||||
|
|
|
|||
Loading…
Reference in New Issue