mirror of
https://github.com/crater-invoice/crater.git
synced 2025-10-28 12:11:08 -04:00
59 lines
908 B
SCSS
Vendored
59 lines
908 B
SCSS
Vendored
.customer-modal {
|
|
|
|
.card-body {
|
|
padding-bottom: 4px;
|
|
}
|
|
|
|
.col-form-label {
|
|
text-align: end;
|
|
font-family: poppins, sans-serif;
|
|
padding-right: 0;
|
|
font-size: 14px;
|
|
position: relative;
|
|
}
|
|
|
|
.required {
|
|
position: absolute;
|
|
color: $ls-color-red;
|
|
right: -10px;
|
|
}
|
|
|
|
.card-footer {
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
padding: 20px 20px;
|
|
|
|
.btn-crater {
|
|
margin-left: 15px;
|
|
}
|
|
}
|
|
|
|
.copy-address-button {
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
}
|
|
|
|
}
|
|
|
|
|
|
@media (max-width: $x-small-breakpoint) {
|
|
|
|
.base-modal {
|
|
|
|
.customer-modal {
|
|
width: 100vw;
|
|
|
|
.required {
|
|
position: relative;
|
|
}
|
|
|
|
.input-label {
|
|
text-align: left;
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|