This commit is contained in:
Vanessa 2023-11-23 22:46:41 +08:00
parent 3932d1cf0c
commit 5422bc4ffb
5 changed files with 50 additions and 25 deletions

View file

@ -113,7 +113,11 @@
&--inner {
border-bottom: 0;
padding: 0 !important;
padding: 0 0 16px 0;
&:last-child {
padding-bottom: 0;
}
}
&:last-child,
@ -125,3 +129,25 @@
border-bottom: 1px solid var(--b3-border-color) !important;
}
}
@media screen and (max-width: 750px) {
.b3-label--inner {
flex-wrap: wrap;
& > .b3-text-field,
& > .b3-select,
& > .b3-form__icona {
width: 100%;
margin-top: 8px;
}
& > .b3-button {
width: 100%;
&:last-child {
margin-top: 16px;
}
}
}
}