36 lines
697 B
SCSS
36 lines
697 B
SCSS
|
.listContainer{
|
||
|
margin-bottom: 32px;
|
||
|
display: flex;
|
||
|
gap: 197px;
|
||
|
}
|
||
|
.listItem :global(.vtex-button){
|
||
|
background-color: white;
|
||
|
color: #BFBFBF;
|
||
|
border: 0;
|
||
|
font-family: 'Open Sans';
|
||
|
font-style: normal;
|
||
|
font-weight: 400;
|
||
|
font-size: 18px;
|
||
|
line-height: 38px;
|
||
|
text-transform: capitalize;
|
||
|
border-radius: 0;
|
||
|
}
|
||
|
.listItemActive :global(.vtex-button){
|
||
|
background-color: white;
|
||
|
color: black;
|
||
|
border: 0;
|
||
|
border-bottom: 2px black solid;
|
||
|
font-family: 'Open Sans';
|
||
|
font-style: normal;
|
||
|
font-weight: 400;
|
||
|
font-size: 18px;
|
||
|
line-height: 38px;
|
||
|
}
|
||
|
// .listContainer :global(.b--action-primary){
|
||
|
// background-color: black;
|
||
|
// }
|
||
|
.bg--primary-action{
|
||
|
background-color: red;
|
||
|
}
|
||
|
|