40 lines
691 B
CSS
40 lines
691 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 */
|
|
.container {
|
|
padding: 0 40px;
|
|
}
|
|
|
|
.listContainer {
|
|
align-items: center;
|
|
margin-bottom: 64px;
|
|
justify-content: space-around;
|
|
border-bottom: 1px solid #BFBFBF;
|
|
}
|
|
|
|
.listItem {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
.listItem :global(.vtex-button) {
|
|
border-radius: 0;
|
|
background-color: #FFFFFF;
|
|
color: #BFBFBF;
|
|
}
|
|
|
|
.listItemActive :global(.vtex-button) {
|
|
border: 0;
|
|
border-bottom: 1px solid #000000 !important;
|
|
}
|
|
|
|
.contentItem {
|
|
display: flex;
|
|
padding: 0px 40px;
|
|
margin-bottom: 16px;
|
|
} |