blob: 4ff492e889f99536cf93776956e2eb1ebf2a3751 (
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
|
.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;
margin: 0;
color: var(--text-color);
}
|