forked from nikdanilov/whisper-obsidian-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
32 lines (29 loc) · 684 Bytes
/
styles.css
File metadata and controls
32 lines (29 loc) · 684 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
.recording-controls .modal-content {
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
gap: 16px;
}
.recording-controls .button-group {
display: flex;
justify-content: center;
gap: 10px;
}
.recording-controls .button-component {
padding: 5px 10px;
}
.recording-controls .button-component {
background-color: var(--text-accent);
color: var(--text-light);
cursor: pointer;
}
.recording-controls .button-component:hover {
background-color: var(--text-accent-hover);
}
.recording-controls .button-component:disabled {
pointer-events: none;
background-color: var(--text-accent-muted);
color: var(--text-muted);
cursor: not-allowed;
}