-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathstyles.css
More file actions
82 lines (63 loc) · 912 Bytes
/
Copy pathstyles.css
File metadata and controls
82 lines (63 loc) · 912 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
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
/* Disabled the style reset as this CSS is not loaded first
meaning that the default button styles (and proabably a lot more
are getting messed up. */
/* @tailwind base; */
.my-2 {
margin-top: 0.5rem;
margin-bottom: 0.5rem
}
.mt-5 {
margin-top: 1.25rem
}
.flex {
display: flex
}
.w-full {
width: 100%
}
.grow {
flex-grow: 1
}
.flex-col {
flex-direction: column
}
.justify-end {
justify-content: flex-end
}
.justify-between {
justify-content: space-between
}
.gap-5 {
gap: 1.25rem
}
.gap-4 {
gap: 1rem
}
.gap-2 {
gap: 0.5rem
}
.py-1 {
padding-top: 0.25rem;
padding-bottom: 0.25rem
}
.px-2 {
padding-left: 0.5rem;
padding-right: 0.5rem
}
.px-3 {
padding-left: 0.75rem;
padding-right: 0.75rem
}
.text-2xl {
font-size: 1.5rem;
line-height: 2rem
}
.font-bold {
font-weight: 700
}
.leading-loose {
line-height: 2
}
.\[key\:string\] {
key: string
}