31 lines
588 B
CSS
31 lines
588 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 */
|
||
|
.menuContainer {
|
||
|
display: flex;
|
||
|
gap: 15px;
|
||
|
}
|
||
|
.menuContainer .styledLinkContainer {
|
||
|
margin: 0;
|
||
|
padding: 0;
|
||
|
}
|
||
|
.menuContainer .styledLinkContainer .styledLink {
|
||
|
font-weight: 400;
|
||
|
font-size: 12px;
|
||
|
line-height: 16px;
|
||
|
letter-spacing: -0.1em;
|
||
|
text-transform: uppercase;
|
||
|
color: #929292;
|
||
|
}
|
||
|
|
||
|
@media screen and (max-width: 1024px) {
|
||
|
.menuContainerNav {
|
||
|
margin-left: 20px;
|
||
|
}
|
||
|
}
|