ebs/assets/styles/_my-account.scss
2023-12-21 08:49:38 +01:00

39 lines
755 B
SCSS

.myAccount{
border-bottom: 1px solid $gray-border;
> .myAccount-header {
display: flex;
align-items: center;
> svg {
width: 20px;
height: 20px;
margin-right: 10px;
font-weight: 400;
> path {
fill: $secondary;
}
}
}
.myAccount-body {
> div {
> svg {
width: 20px;
height: 20px;
> path {
fill: $secondary;
font-weight: lighter;
}
}
}
}
}
.form-switch {
padding-left: 1em;
}
@media screen and (min-width: 768px) {
.myAccount {
border-bottom: none;
}
}