[Legacy] Email Field Styling Fixes

This commit is contained in:
balumahendran 2022-09-15 11:06:20 +05:30 committed by Clemente Raposo
parent a038b31c40
commit 8df5bd8e3c

View file

@ -7,6 +7,9 @@
padding: 0; padding: 0;
.email-address-options-container { .email-address-options-container {
margin-top: -1.2em; margin-top: -1.2em;
@media (max-width: 768px) {
margin-top: 0.2em;
}
} }
} }
.col-xs-12 .email-address-lines-container { .col-xs-12 .email-address-lines-container {
@ -14,6 +17,9 @@
} }
span.input-group-btn { span.input-group-btn {
bottom: 5px; bottom: 5px;
@media (max-width: 768px) {
left: 8px;
}
} }
.email-address-add-button { .email-address-add-button {
background: none; background: none;
@ -83,4 +89,15 @@
button:disabled { button:disabled {
width: 28px; width: 28px;
} }
@media (max-width: 768px) {
.email-address-input-group {
background: $transparent-color;
border: none;
margin-top: 1em;
input {
border-top-right-radius: 4px !important;
border-bottom-right-radius: 4px !important;
}
}
}
} }