File size: 1,386 Bytes
8fba2a6
 
e9b63e6
d9dbd57
8fba2a6
 
e9b63e6
 
8fba2a6
 
 
9a085da
 
8fba2a6
 
9a085da
8fba2a6
9a085da
 
 
8fba2a6
9a085da
63d5e0f
 
9a085da
 
8fba2a6
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
0d455d2
 
 
 
 
 
 
 
 
 
 
63d5e0f
 
 
 
 
 
 
9a085da
 
 
 
d9dbd57
e9b63e6
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
75
@import "../_variables.css";

.sidebarContainer {
    width: 100%;
    min-width: 250px;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: left;
    justify-content: flex-start;
    background-color: var(--background-color-primary);
}

.sidebarContainer .buttonContainer {
  box-sizing: border-box;
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  gap: 10px;
  position: relative;
  padding: 10px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.sidebarContainer .buttonContainer .addChatButton {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.sidebarContainer .buttonContainer .searchButton {
  display: flex;
  align-items: center;
  justify-content: center;

}

.sidebarContainer .chatsContainer {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  flex-grow: 1;
  overflow-y: auto;
}

.chatsContainer::-webkit-scrollbar-track {
    display: none;
    width: 0;
}

.chatsContainer::-webkit-scrollbar {
    display: none;
    width: 0;
    background: transparent;
}

.sidebarContainer .themeSwitcher {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
}

.hide-neighbor {
  opacity: 0;
  pointer-events: none;
}