-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.scss
45 lines (38 loc) · 934 Bytes
/
style.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
// SCSS function for image URLs
// used by govuk_publishing_components
@function image-url($filename){
@return url('/assets/#{$filename}');
}
@import "govuk/base";
@import "govuk/core/all";
@import "govuk_publishing_components/components/govspeak";
@import "prosemirror-view/style/prosemirror.css";
@import "prosemirror-menu/style/menu.css";
@import "./scss/prosemirror-example-setup";
@import "prosemirror-gapcursor/style/gapcursor.css";
@import "prosemirror-tables/style/tables.css";
@import "./scss/footnotes";
:root {
font-family: system-ui, sans-serif;
}
#editor,
.editor {
background: white;
color: black;
background-clip: padding-box;
border-radius: 4px;
border: 2px solid rgba(0, 0, 0, 0.2);
padding: 5px 0;
margin-bottom: 23px;
}
.ProseMirror {
padding: 1rem;
outline: none;
}
#editor .govspeak table {
display: table;
td {
border: 1px dotted $govuk-border-colour;
padding: 10px;
}
}