-
Notifications
You must be signed in to change notification settings - Fork 1
/
demo-support.css
92 lines (75 loc) · 1.3 KB
/
demo-support.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
body {
display: flex;
flex-direction: column;
gap: 1rem;
min-height: 100vh;
padding: 1rem;
max-width: 700px;
margin: 0 auto;
/* font-family: "Yatra One", system-ui; */
}
header {
display: flex;
align-items: center;
justify-content: space-between;
}
.demo-header-text {
display: flex;
align-items: center;
gap: 0.5rem;
}
.demo-header-text img {
width: 40px;
}
.demo-header {
padding-top: 1rem;
}
.demo-break {
padding-top: 2rem;
}
.demo-float h3,
.demo-float p:first-of-type {
padding-bottom: 1rem;
}
.demo-code {
display: block;
/* margin-top: 1em; */
white-space: nowrap;
}
.demo-buttons {
display: flex;
gap: 1rem;
}
form input {
margin-bottom: 1rem;
}
.misc-components {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 0 2rem;
}
.misc-components>div {
display: flex;
flex-direction: column;
gap: 0.5rem;
}
.demo-card {
display: flex;
flex-direction: column;
gap: 1rem;
}
.demo-card-button-container {
display: flex;
align-items: center;
gap: 1rem;
}
@media (min-width: 640px) {
body {
padding: 2rem;
gap: 1.25rem;
}
.demo-float h3,
.demo-float p:first-of-type {
padding-bottom: 1.25rem;
}
}