-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.css
More file actions
41 lines (38 loc) · 910 Bytes
/
tailwind.css
File metadata and controls
41 lines (38 loc) · 910 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
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer base {
html {
font-family:
"TWK Lausanne",
ui-sans-serif,
system-ui,
-apple-system,
"Segoe UI",
Roboto,
"Helvetica Neue",
Arial,
"Noto Sans",
"Apple Color Emoji",
"Segoe UI Emoji",
"Segoe UI Symbol";
}
}
@layer components {
/* Page content text links only (anchors without custom classes) */
.prose a:not([class]),
.prose a:not([class]):hover,
.prose a:not([class]):focus {
color: #1989fb !important;
text-decoration: none !important;
background-image: none !important;
border-bottom: none !important;
box-shadow: none !important;
}
/* Specific smaller image override for Mini Apps template screenshot */
.img-miniapps-template {
width: 220px !important;
max-width: 220px !important;
height: auto !important;
}
}