aboutsummaryrefslogtreecommitdiff
path: root/src/frontend/app/components/layout/Header.css
blob: 0bba747ec29a3da2700b131ba7f41c263bd7624b (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
40
41
.app-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1rem;
  background-color: var(--background-color);
  height: 60px;
  box-sizing: border-box;
  width: 100%;
}

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

.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);
}