49 lines
960 B
CSS
49 lines
960 B
CSS
/*
|
|
0 - 600PX: Phone
|
|
600 - 900px: Table portrait
|
|
900 - 1200px: Tablet landscape
|
|
[1200 - 1800] is where our nortal styles apply
|
|
1800px + : Big desktop
|
|
*/
|
|
/* Media Query M3 */
|
|
/* Grid breakpoints */
|
|
.listContainer {
|
|
margin-bottom: 32px;
|
|
display: flex;
|
|
flex-direction: row;
|
|
column-gap: 197.5px;
|
|
}
|
|
.listContainer::after {
|
|
content: "";
|
|
background-color: #BFBFBF;
|
|
display: inline-block;
|
|
width: 100%;
|
|
height: 1px;
|
|
position: relative;
|
|
bottom: 9px;
|
|
}
|
|
|
|
.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;
|
|
} |