-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathstyles.css
More file actions
48 lines (38 loc) · 1.24 KB
/
styles.css
File metadata and controls
48 lines (38 loc) · 1.24 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
@layer beam-reset, beam-base, beam-tokens, beam-recipes, beam-utilities;
@tailwind utilities;
html {
font-feature-settings: "rlig" 1, "calt" 1, "ss01" 1, "ss06" 1 !important;
}
/* [data-reach-skip-link] {
@apply sr-only;
}
[data-reach-skip-link]:focus {
@apply not-sr-only fixed ml-6 top-0 bg-white text-lg px-6 py-2 mt-2 outline-none focus:ring z-50;
} */
.dark .invert-on-dark {
filter: invert(1) brightness(1.8);
}
body {
/* Reset body width in order to support radix modal's scroll-lock */
width: unset !important;
}
.nextra-content {
color: var(--beam-business-colors-mono-primary-bg);
}
a._underline {
color: var(--beam-business-colors-blue-primary);
text-decoration: underline;
text-underline-offset: 1px;
text-decoration-color: var(--beam-business-colors-blue-qauartnery);
}
a._underline:hover, a._underline:focus-visible, a._underline:active {
color: var(--beam-business-colors-blue-tertiary);
text-decoration: underline;
text-decoration-color: var(--beam-business-colors-blue-qauartnery);
}
/* Overwrite Nextra's default `rgb(var(--nextra-bg))` because that could never work when passing a hex value */
@media not all and (min-width: 768px) {
.nextra-sidebar-container {
background-color: var(--nextra-bg);
}
}