forked from seethroughdev/obsidian-recipe-grabber
-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
51 lines (41 loc) · 907 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
/*
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.
*/
/**
We need to add some custom styling for the settings tab because we want our textarea to fill the avaialble space.
*/
.settingsTemplateRow {
display: flex;
justify-content: start;
flex-direction: column;
align-items: flex-start;
position: relative;
}
.settingsTemplateRow .setting-item-control {
width: 100%;
margin: 1rem 0 0;
flex: 1 auto;
}
.settingsTemplateRow .setting-item-info {
flex: 0 1 auto;
}
.settingsTemplateRow textarea {
width: 100%;
height: 100%;
}
.settingsTemplate {
display: flex;
justify-content: start;
flex-direction: column;
}
.settingsTemplate .settingsTemplateRow {
flex: 1 auto;
}
.settingsTemplateRow .settingsTemplateButton {
position: absolute;
top: 1rem;
right: 0;
cursor: pointer;
}