-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathinput.css
More file actions
86 lines (73 loc) · 1.68 KB
/
input.css
File metadata and controls
86 lines (73 loc) · 1.68 KB
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
83
84
85
86
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer base {
.material-symbols-outlined {
font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}
.filled-icon {
font-variation-settings: 'FILL' 1;
}
::-webkit-scrollbar {
width: 8px;
}
::-webkit-scrollbar-track {
background: #191022;
}
::-webkit-scrollbar-thumb {
background: #302839;
border-radius: 4px;
}
}
@layer components {
/* Custom Title Bar */
#title-bar {
-webkit-app-region: drag;
height: 32px;
display: flex;
justify-content: space-between;
align-items: center;
background: #141118;
border-bottom: 1px solid rgba(255, 255, 255, 0.05);
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 1000;
}
#window-controls {
-webkit-app-region: no-drag;
display: flex;
height: 100%;
}
.window-control-btn {
width: 46px;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
color: #ab9db9;
transition: all 0.2s;
cursor: pointer;
}
.window-control-btn:hover {
background: rgba(255, 255, 255, 0.1);
color: white;
}
.window-control-btn.close:hover {
background: #e81123;
color: white;
}
.app-title {
font-size: 12px;
font-weight: 600;
color: #ab9db9;
margin-left: 12px;
pointer-events: none;
}
/* Adjust layout for title bar */
.app-container {
margin-top: 32px;
height: calc(100vh - 32px);
}
}