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