aboutsummaryrefslogtreecommitdiffstats
path: root/styles/main/_user.scss
blob: 07e5c28310a6b574ebf3e2a439a4348686b10855 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
.user {
  font-weight: 600;
  // cursor: pointer;
  position: relative;
  padding: .25em .5em;
  margin: .25em;
  border-radius: .5em;
  transition: .3s background, .3s color;

  &:hover {
    color: var(--color-text-alt);
    background-color: var(--color-selected);
  }
}