aboutsummaryrefslogtreecommitdiff
path: root/src/components/Menu/Menu.scss
blob: cf9f7aadeacac63d17ea9a6aa3e85347428d8112 (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
@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;
}

.HomePageMenu .menuItem:hover {
  color: $altFG;
}

.InvoiceInfoMenu {
  width: 60%;
}