aboutsummaryrefslogtreecommitdiff
path: root/FrontEnd/src/views/common/menu/Menu.css
blob: c3fa82c469720183aab3e3eee2db81873ab8921c (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
.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-theme-color);
}

.cru-menu-item:hover {
  color: var(--cru-theme-t-color);
  background-color: var(--cru-theme-color);
}

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

.cru-menu-divider {
  border-top: 1px solid #e9ecef;
}