49 lines
715 B
CSS
49 lines
715 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 {
|
|
display: flex;
|
|
align-items: center;
|
|
padding: 0 40px;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.homeLink::after {
|
|
content: "Home";
|
|
font-size: 14px;
|
|
padding-right: 0.25rem;
|
|
}
|
|
|
|
.homeIcon,
|
|
.termArrow,
|
|
.term {
|
|
display: none;
|
|
}
|
|
|
|
.link--1 {
|
|
height: 23px;
|
|
font-size: 14px;
|
|
padding-right: 0.25rem;
|
|
}
|
|
|
|
:global(.vtex-breadcrumb-1-x-container) {
|
|
font-weight: 400;
|
|
font-size: 14px;
|
|
line-height: 19px;
|
|
}
|
|
|
|
.arrow {
|
|
padding: 0;
|
|
}
|
|
|
|
@media screen and (min-width: 1920px) {
|
|
.container {
|
|
padding: 0 360px;
|
|
}
|
|
} |