mirror of
https://github.com/Paris-est-Ludique/intranet.git
synced 2025-06-10 01:24:20 +02:00
24 lines
360 B
SCSS
24 lines
360 B
SCSS
@import "../../theme/variables";
|
|
|
|
.mainMenu {
|
|
margin: 0;
|
|
padding: 0;
|
|
list-style: none;
|
|
}
|
|
|
|
.mainMenuItem {
|
|
display: inline-block;
|
|
margin: 0 4px;
|
|
|
|
a {
|
|
font-size: 0.9em;
|
|
font-weight: bold;
|
|
color: $color-black;
|
|
text-decoration: none;
|
|
|
|
&:hover {
|
|
color: $color-grey-dark;
|
|
}
|
|
}
|
|
}
|