tailwind-softpop-plugin 0.0.12 → 0.0.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/index.css +9 -1
package/package.json
CHANGED
package/src/index.css
CHANGED
|
@@ -131,6 +131,11 @@
|
|
|
131
131
|
font-size: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
|
|
132
132
|
line-height: 1.6;
|
|
133
133
|
-webkit-font-smoothing: antialiased;
|
|
134
|
+
display: grid;
|
|
135
|
+
min-height: 100vh;
|
|
136
|
+
grid-template-rows: auto 1fr auto;
|
|
137
|
+
overflow-x: hidden;
|
|
138
|
+
overflow-y: auto;
|
|
134
139
|
}
|
|
135
140
|
|
|
136
141
|
h1,
|
|
@@ -162,10 +167,13 @@
|
|
|
162
167
|
}
|
|
163
168
|
|
|
164
169
|
p {
|
|
165
|
-
margin-bottom: 1.5em;
|
|
166
170
|
max-width: 75ch;
|
|
167
171
|
}
|
|
168
172
|
|
|
173
|
+
p + p {
|
|
174
|
+
margin-top: 1.5em;
|
|
175
|
+
}
|
|
176
|
+
|
|
169
177
|
button {
|
|
170
178
|
@apply focus-visible:outline-none focus-visible:ring-4 focus-visible:ring-primary-500/60;
|
|
171
179
|
}
|