-
Notifications
You must be signed in to change notification settings - Fork 0
/
utilty.css
101 lines (78 loc) · 1.08 KB
/
utilty.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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
/* Utility classes */
.h-screen {
height: 100vh !important;
}
.w-screen {
width: 100vw !important;
}
.flex {
display: flex;
}
.flex-row {
flex-direction: row;
}
.flex-col {
flex-direction: column;
}
.hide {
display: none !important;
}
/* Tailwind CSS equivalents */
.justify-between {
justify-content: space-between;
}
.justify-center {
justify-content: center;
}
.justify-end {
justify-content: flex-end;
}
.justify-around {
justify-content: space-around;
}
.justify-evenly {
justify-content: space-evenly;
}
.items-start {
align-items: flex-start;
}
.items-end {
align-items: flex-end;
}
.items-center {
align-items: center;
}
.items-baseline {
align-items: baseline;
}
.items-stretch {
align-items: stretch;
}
.capitalize {
text-transform: capitalize;
}
.required {
color: red;
}
.overflow-x-hidden {
overflow-x: hidden;
}
.w-80 {
width: 80% !important;
}
.w-90 {
width: 90% !important;
}
.breaker {
margin-top: 1.6rem;
margin-bottom: 1.6rem;
}
.center {
text-align: center;
}
.m-10 {
margin: 10px;
}
.icon {
padding-right: 3px;
}