aboutsummaryrefslogtreecommitdiff
path: root/src/app/components/navbar/navbar.component.css
blob: d02e928f3f09af85e9be45a4b46cb78f659f2b94 (plain) (blame)
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
27
28
29
30
31
32
33
34
35
36
37
38
#navbar {
  height: var(--navbar-height);
  width: 100%;
  background-color: var(--card-bg);
}

#nav-contents img {
  height: 1.9em;
  width: 1.9em;
}

@media screen and (max-width: 30rem) {
  #nav-username {
    display: none;
  }

  #navbar {
    font-size: 0.8em;
  }
}

#nav-profile-picture {
  padding: 0.1em;
}

#nav-profile-picture img {
  height: 1.8em;
  width: 1.8em;
}

.nav-item {
  margin-left: 0.2em;
  padding: 0 0.1em;
}

.nav-item:first-child {
  margin-left: 0;
}