forked from nhaouari/obsidian-textgenerator-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
42 lines (42 loc) · 843 Bytes
/
main.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
/* src/styles.css */
@tailwind base;
@tailwind components;
@tailwind utilities;
.ToggleGroup {
display: inline-flex;
background-color: blue;
border-radius: 4px;
box-shadow: 0 2px 10px blue;
}
.ToggleGroupItem {
background-color: white;
color: blue;
height: 35px;
width: 35px;
display: flex;
font-size: 15px;
line-height: 1;
align-items: center;
justify-content: center;
margin-left: 1px;
}
.ToggleGroupItem:first-child {
margin-left: 0;
border-top-left-radius: 4px;
border-bottom-left-radius: 4px;
}
.ToggleGroupItem:last-child {
border-top-right-radius: 4px;
border-bottom-right-radius: 4px;
}
.ToggleGroupItem:hover {
background-color: blue;
}
.ToggleGroupItem[data-state=on] {
background-color: blue;
color: blue;
}
.ToggleGroupItem:focus {
position: relative;
box-shadow: 0 0 0 2px black;
}