-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathcustom.scss
More file actions
47 lines (42 loc) · 849 Bytes
/
custom.scss
File metadata and controls
47 lines (42 loc) · 849 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
42
43
44
45
46
47
@mixin word-wrap() {
overflow-wrap: break-word;
word-wrap: break-word;
word-break: break-all;
-ms-word-break: break-all;
word-break: break-word;
-ms-hyphens: auto;
-moz-hyphens: auto;
-webkit-hyphens: auto;
hyphens: auto;
}
a {
overflow-wrap: break-word;
word-wrap: break-word;
word-break: break-all;
-ms-word-break: break-all;
word-break: break-word;
-ms-hyphens: auto;
-moz-hyphens: auto;
-webkit-hyphens: auto;
hyphens: auto;
}
.callout.callout-style-default {
border-left: 6px solid
}
.callout.callout-style-default .callout-header {
// border-bottom: none;
// font-weight: 600;
// opacity: 100%;
color: black;
}
.output-scroll {
max-height: 500px;
overflow-y: scroll;
overflow-x: scroll;
}
.cell-output-display {
overflow-x: scroll;
}
.cell-output {
background-color: rgb(251, 251, 251);
}