challenge-vtex-io-saulo-klein/styles/sass/pages/product/vtex.tab-layout.scss

44 lines
816 B
SCSS

.container--tabLayout {
padding: 0 40px;
.listContainer {
border-bottom: 1px solid $color-gray13;
justify-content: space-evenly;
.listItem {
margin: 0;
padding: 0;
:global(.vtex-button__label) {
font-weight: 400;
font-size: 18px;
line-height: 38px;
color: $color-gray14;
text-transform: capitalize;
}
}
.listItemActive {
border-bottom: 2px solid $color-black2;
:global(.vtex-button) {
background-color: transparent;
border: none;
:global(.vtex-button__label) {
color: $color-black2;
}
}
}
}
.contentContainer {
.contentItem {
display: grid;
grid-template-columns: repeat(2, 50%);
gap: 32px;
padding: 32px 32px 0;
}
}
}