-
Notifications
You must be signed in to change notification settings - Fork 0
/
Sidebar.css
74 lines (61 loc) · 1.07 KB
/
Sidebar.css
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
.sidebar{
flex: 3;
height: calc(100vh-50px);
background-color: aquamarine;
overflow-y: scroll;
}
.\-webkitscrollbar{
width:5px;
}
.\-webkitscrollbar-track{
width:5px;
background-color: white;
}
.\-webkitscrollbar-thumb{
width:5px;
background-color: grey;
}
.Sidebarwrapper{
padding: 20px;
background-color: lightgreen;
}
.sidebarList{
padding: 0;
margin: 0;
list-style: none;
}
.sidebarListItem{
display: flex;
align-items: center;
margin-bottom: 20px;
}
.sidebarIcon{
margin-right: 15px;
}
.sidbarButton{
width: 50px;
border: none;
padding: 10;
border-radius: 5px;
font-weight: 500;
}
.sidebarHr{
margin: 20px 0;
}
.sidebarFriendList{
padding: 0;
margin: 0;
list-style: none;
}
.sidebarFriend{
display: flex;
align-items: center;
margin-bottom: 15px;
}
.sidebarFriendImg{
width: 32px;
height: 32px;
border-radius: 50%;
object-fit: cover;
margin-right: 10px;
}