-
Notifications
You must be signed in to change notification settings - Fork 0
/
Sidebar.css
53 lines (52 loc) · 1.02 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
.sidebar {
display: flex;
flex-direction: column;
flex: 0.3;
border-right: 1px solid lightgray;
}
.sidebar__search {
display: flex;
align-items: center;
background-color: #f6f6f6;
height: 39px;
padding: 10px;
}
.sidebar__searchContainer > .MuiSvgIcon-root {
color: gray;
padding: 10px;
}
.sidebar__searchContainer {
display: flex;
align-items: center;
background-color: white;
width: 100%;
height: 35px;
border-radius: 20px;
}
.sidebar__searchContainer > input {
border: none;
margin-left: 10px;
}
.sidebar__header {
display: flex;
align-items: center;
justify-content: space-between;
padding: 20px;
height: 4%;
border-right: 1px solid lightgray;
}
.sidebar__headerRight {
display: flex;
align-items: center;
min-width: 10vw;
justify-content: space-between;
}
.sidebar__headerRight > .MuiSvgIcon-root {
margin-right: 2vw;
font-size: 24px !important;
}
.sidebar__chats {
flex: 1;
background-color: white;
overflow: scroll;
}