forked from sugarforever/chat-ollama
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.scss
86 lines (70 loc) · 1.42 KB
/
index.scss
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
@import 'highlight.js/scss/github.scss';
@import './markdown.scss';
.dark {
@import 'highlight.js/scss/github-dark.scss';
}
html,
body,
#__nuxt {
height: 100%;
font-family: "Noto Sans", SF Pro SC, SF Pro Text, SF Pro Icons, PingFang SC, Helvetica Neue, Helvetica, Arial, sans-serif;
}
body {
code,
pre,
kbd,
samp {
font-family: inherit;
}
--top-height: 48px;
}
.md-body {
--color-neutral-muted: rgb(var(--color-primary-400) / 0.1);
--color-canvas-subtle: rgb(var(--color-primary-50));
background-color: transparent;
font-size: 0.875rem;
line-height: 1.5rem;
code {
white-space: pre-wrap;
margin: 0 0.4em;
}
.hljs {
background-color: transparent;
}
ol,
ul {
list-style: initial;
}
li>p {
display: inline;
}
}
.dark .md-body {
--color-neutral-muted: rgb(var(--color-primary-200) / 0.2);
--color-canvas-subtle: rgb(var(--color-gray-900));
}
.table-list {
.action-btn {
visibility: hidden;
display: inline-flex;
transition: all 0.3s ease-in-out;
opacity: 0;
transform-origin: center;
transform: scale(0);
}
tr:hover {
.action-btn {
visibility: visible;
opacity: 1;
transform: scale(1);
}
}
}
@supports (-webkit-touch-callout: none) and (overflow: -webkit-paged-x) {
textarea:focus,
input[type="input"]:focus,
input[type="password"]:focus,
input[type="number"]:focus {
font-size: 16px !important;
}
}