File size: 1,468 Bytes
bcd7623
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
c36e25a
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
76
77
78
79
80
81
82
/* ai-sidebar.css */

.ai-sidebar__container {
    display: flex;
    min-height: 100vh;
    
}

.ai-sidebar__sidebar {
    max-width: 250px;
    background-color: #ffffff;
    padding: 10px;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.ai-sidebar__title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #3f72af;
    margin-bottom: 20px;
    text-align: center;
    justify-content: center;
}
.ai-sidebar__app-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
}

.ai-sidebar__app-item {
    display: flex;
    align-items: center;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.ai-sidebar__app-item:hover {
    background-color: #3f72af;
    color: white;
}

.ai-sidebar__app-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 16px;
    color: white;
    font-size: 1.1rem;
}

.ai-sidebar__app-name {
    font-weight: 500;
}

.ai-sidebar__content {
    flex-grow: 1;
    padding: 20px;
}

.ai-sidebar__footer {
    margin-top: auto;
}

.ai-sidebar__footer .ai-sidebar__app-item {
    text-decoration: none;
    color: inherit;
}

.ai-sidebar__footer .ai-sidebar__app-icon {
    width: 40px;
    height: 40px;
}