generated from obsidianmd/obsidian-sample-plugin
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyles.css
68 lines (54 loc) · 964 Bytes
/
styles.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
/*
This CSS file will be included with your plugin, and
available in the app when your plugin is enabled.
If your plugin does not need CSS, delete this file.
*/
.filename-container {
padding-left: 10px;
}
.save-button-container {
height: 5%;
padding: 10px;
border-top: 1px solid var(--background-modifier-border);
}
.diff-container {
display: flex;
height: 90%;
}
.diff-column {
flex: 1;
padding: 10px;
display: flex;
flex-direction: column;
height: 100%;
overflow: hidden;
}
.diff-header-title {
display: flex;
justify-content: space-between;
align-items: center;
h3 {
margin: 0;
}
small {
display: block;
margin-top: 4px;
}
}
.diff-header {
margin-bottom: 15px;
height: 5%;
}
.scroll-container {
border: 1px solid var(--background-modifier-border);
border-radius: 4px;
padding: 10px;
}
.diff-content,
.merged-content {
font-family: var(--font-monospace);
line-height: 1.5;
}
.button-container {
margin-top: 10px;
}