forked from magicoflolis/Userscript-Plus
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathweb-ext.scss
More file actions
43 lines (41 loc) · 838 Bytes
/
Copy pathweb-ext.scss
File metadata and controls
43 lines (41 loc) · 838 Bytes
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
@font-face {
font-family: Inter;
font-style: normal;
font-weight: normal;
src: url('fonts/Inter-Regular.woff2') format('woff2');
}
@font-face {
font-family: Inter;
font-style: normal;
font-weight: 600;
src: url('fonts/Inter-SemiBold.woff2') format('woff2');
}
body.webext-page,
.main {
font-family: Inter, sans-serif !important;
}
body.webext-page {
overflow-x: hidden;
padding: 0;
margin: 0;
background: #495060;
color: #ffffff;
border: 1px solid rgba(0, 0, 0, 0);
border-bottom-left-radius: 10px;
border-bottom-right-radius: 10px;
.magicuserjs-cfg {
display: flex;
gap: 10px;
flex-direction: column;
// height: 900px;
textarea {
width: 100%;
width: -moz-available;
width: -webkit-fill-available;
}
}
.main {
min-width: 50%;
height: 100%;
}
}