aboutsummaryrefslogtreecommitdiff
path: root/src/frontend/app/components/layout/Header.css
blob: 21847864914717bfe14ccc56477fad20121a1f89 (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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
.app-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem;
  background-color: var(--background-color);
  height: 60px;
  box-sizing: border-box;
}

.app-header__left {
  display: flex;
  align-items: center;
}

.app-header__menu-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-color);
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.2s;
}

.app-header__menu-btn:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.app-header__title {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.05;
  margin: 0;
  color: var(--text-color);
}