forked from JetBrains/kotlin-web-site
-
Notifications
You must be signed in to change notification settings - Fork 422
/
global.css
46 lines (38 loc) · 783 Bytes
/
global.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
@import "@rescui/typography/lib/font-jb-sans-auto.css";
@import "@jetbrains/kotlin-web-site-ui/out/components/common/index.css";
:root {
--rs-color-primary-light-theme: var(--ktl-color-primary-light-theme);
--rs-color-primary-t-dim-light-theme: rgba(127, 82, 255, 0.8);
}
html {
min-width: 320px;
}
img {
max-width: 100%;
}
button,
[type='button'],
[type='reset'],
[type='submit'] {
-webkit-appearance: inherit;
}
body._no-scroll {
overflow: hidden;
}
body {
/* Fix for mobile menu in safari*/
right: 0;
&.dark-theme {
background: #19191C;
}
}
:focus-visible {
outline: none;
box-shadow: none;
}
[data-test="input__inner"] {
&:focus[data-focus-method=key] {
outline: none;
box-shadow: none;
}
}