blob: bc3fbb301b902505109195ff3182d61178f66df4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
@import "../../styles/theme";
.HomePageMenu {
/*border: 1px solid green;*/
min-width: 20rem;
width: 50%;
display: grid;
grid-template-columns: auto auto;
}
.HomePageMenu .menuItem {
text-align: center;
text-decoration: none;
font-size: $fontSize2;
color: $defFG;
transition: color $defTransition;
}
.HomePageMenu .menuItem:hover {
color: $altFG;
}
.InvoiceInfoMenu {
width: 60%;
}
|