54 lines
944 B
SCSS
54 lines
944 B
SCSS
.listContainer {
|
|
border-bottom: 1px solid $color-gray9;
|
|
margin-bottom: 32px;
|
|
padding-left: 64px;
|
|
padding-right: 64px;
|
|
margin-left: 40px;
|
|
margin-right: 40px;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: end;
|
|
}
|
|
|
|
.listItem {
|
|
background-color: transparent;
|
|
padding: 0;
|
|
margin: 0;
|
|
height: 42px;
|
|
|
|
:global(.vtex-button) {
|
|
background-color: transparent;
|
|
cursor: pointer;
|
|
}
|
|
|
|
:global(.vtex-button) {
|
|
background-color: transparent;
|
|
}
|
|
|
|
:global(.vtex-button__label) {
|
|
font-weight: 400;
|
|
font-size: 18px;
|
|
line-height: 38px;
|
|
color: $color-gray9;
|
|
text-transform: capitalize;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
}
|
|
|
|
.listItemActive {
|
|
border-bottom: 2px solid $color-black-100;
|
|
}
|
|
|
|
.listItemActive--descricao {
|
|
:global(.vtex-button) {
|
|
border: none;
|
|
border-radius: 0%;
|
|
}
|
|
:global(.vtex-button__label) {
|
|
color: $color-black-100;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
}
|