aboutsummaryrefslogtreecommitdiff
path: root/FrontEnd/src/views/common/menu/Menu.css
blob: 9b0f55bfb8eed059a8d7fe0724be9a56436b7ece (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
.cru-menu {
  min-width: 200px;
}

.cru-menu-item {
  font-size: 1em;
  padding: 0.5em 1.5em;
  cursor: pointer;
  transition: all 0.5s;
  color: var(--cru-button-normal-color);
}

.cru-menu-item:hover {
  color: white;
  background-color: var(--cru-button-normal-color);
}

.cru-menu-item-icon {
  margin-right: 1em;
}

.cru-menu-divider {
  border-width: 0;
  border-top: 1px solid var(--cru-button-normal-color);
}