This repository has been archived by the owner on Jan 24, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
67 lines (63 loc) · 1.67 KB
/
styles.css
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
@font-face {
font-family: 'Suisse Intl';
font-style: normal;
font-weight: 400;
src: url('/fonts/SuisseIntl-Regular-WebM.woff') format('woff');
}
@font-face {
font-family: 'Suisse Intl';
font-style: italic;
font-weight: 400;
src: url('/fonts/SuisseIntl-RegularItalic-WebM.woff') format('woff');
}
@font-face {
font-family: 'Suisse Intl';
font-style: normal;
font-weight: 700;
src: url('/fonts/SuisseIntl-Bold-WebM.woff') format('woff');
}
@font-face {
font-family: 'Suisse Intl';
font-style: italic;
font-weight: 700;
src: url('/fonts/SuisseIntl-BoldItalic-WebM.woff') format('woff');
}
.markdown p:not(:last-child) {
margin-bottom: 1rem;
}
section > .text-center .markdown img {
margin: auto;
}
section > .text-right .markdown img {
margin-left: auto;
}
/* Hide various rich-text toolbar items */
.with-toolbar .sticky {
width: 280px !important;
}
.with-toolbar .sticky .grid .grid span.z-10,
.with-toolbar .sticky .grid .grid > div,
.with-toolbar span[data-test="popoverRichTextButton"],
.with-toolbar span[data-test="quoteButton"],
.with-toolbar span[data-test="codeButton"],
.with-toolbar span[data-test="codeBlockButton"] {
display: none;
}
.with-toolbar span[data-test="italicButton"],
.with-toolbar span[data-test="boldButton"] {
visibility: visible !important;
pointer-events: auto !important;
}
.with-toolbar span[data-test="italicButton"] {
border-right: 1px solid rgb(225 221 236 / var(--tw-border-opacity));
}
/* Make global settings modal sidebar width and remove overlay */
#modal-root > div > div > div {
max-width: 450px;
}
#modal-root > div > div:last-child {
display: none;
}
@tailwind base;
@tailwind components;
@tailwind utilities;