-
Notifications
You must be signed in to change notification settings - Fork 0
/
utils.css
72 lines (57 loc) · 935 Bytes
/
utils.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
.min-h-screen{
min-height: 100vh;
}
.bg-red{
background-color: red;
}
.mx-auto{
margin-left: auto;
margin-right: auto;
}
.flex{
display: flex;
}
.items-center{
align-items: center;
}
.justify-between{
justify-content: space-between;
}
.justify-center{
justify-content: center;
}
.flex-col{
flex-direction: column;
}
.font-bold{
font-weight: bolder;
}
.my-1{
margin-top: 13px;
margin-bottom: 13px;
}
.my-2{
margin-top: 26px;
margin-bottom: 26px;
}
.px-2{
padding-left: 13px;
padding-right: 13px;
}
.text-blue{
color: rgb(227 74 56);;
}
.btn{
padding:7px 12px;
border: 2px solid white;
border-radius: 6px;
cursor: pointer;
color: white;
background-color: rgb(227 74 56);;
}
.overflow-x-hidden{
overflow-x: hidden;
}
.text-center{
text-align: center;
}