negodesign 0.0.19 → 0.0.20
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.
|
@@ -108,15 +108,21 @@
|
|
|
108
108
|
{#key selected.title}
|
|
109
109
|
<div
|
|
110
110
|
style="transition: opacity {transitionMs * 0.6}ms ease-in-out;"
|
|
111
|
-
class="opacity-0"
|
|
111
|
+
class="opacity-0 flex flex-col justify-center items-center text-center"
|
|
112
112
|
use:fadeIn
|
|
113
113
|
>
|
|
114
|
-
<
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
114
|
+
<div>
|
|
115
|
+
<h1
|
|
116
|
+
class="text-white text-2xl md:text-4xl font-bold {titleClass}"
|
|
117
|
+
>
|
|
118
|
+
{selected.title}
|
|
119
|
+
</h1>
|
|
120
|
+
</div>
|
|
121
|
+
<div class="flex flex-col justify-center items-center">
|
|
122
|
+
<p class="text-white/90 mt-2 max-w-2xl {descriptionClass}">
|
|
123
|
+
{selected.description}
|
|
124
|
+
</p>
|
|
125
|
+
</div>
|
|
120
126
|
</div>
|
|
121
127
|
{/key}
|
|
122
128
|
|
package/dist/globals.css
CHANGED
|
@@ -507,6 +507,9 @@
|
|
|
507
507
|
.mb-8 {
|
|
508
508
|
margin-bottom: calc(var(--spacing) * 8);
|
|
509
509
|
}
|
|
510
|
+
.mb-10 {
|
|
511
|
+
margin-bottom: calc(var(--spacing) * 10);
|
|
512
|
+
}
|
|
510
513
|
.ml-10 {
|
|
511
514
|
margin-left: calc(var(--spacing) * 10);
|
|
512
515
|
}
|
|
@@ -773,6 +776,9 @@
|
|
|
773
776
|
.w-11 {
|
|
774
777
|
width: calc(var(--spacing) * 11);
|
|
775
778
|
}
|
|
779
|
+
.w-11\/12 {
|
|
780
|
+
width: calc(11 / 12 * 100%);
|
|
781
|
+
}
|
|
776
782
|
.w-12 {
|
|
777
783
|
width: calc(var(--spacing) * 12);
|
|
778
784
|
}
|
|
@@ -3232,6 +3238,9 @@
|
|
|
3232
3238
|
.md\:mx-4 {
|
|
3233
3239
|
margin-inline: calc(var(--spacing) * 4);
|
|
3234
3240
|
}
|
|
3241
|
+
.md\:my-2 {
|
|
3242
|
+
margin-block: calc(var(--spacing) * 2);
|
|
3243
|
+
}
|
|
3235
3244
|
.md\:mt-10 {
|
|
3236
3245
|
margin-top: calc(var(--spacing) * 10);
|
|
3237
3246
|
}
|
|
@@ -3256,6 +3265,9 @@
|
|
|
3256
3265
|
.md\:min-h-125 {
|
|
3257
3266
|
min-height: calc(var(--spacing) * 125);
|
|
3258
3267
|
}
|
|
3268
|
+
.md\:w-3\/5 {
|
|
3269
|
+
width: calc(3 / 5 * 100%);
|
|
3270
|
+
}
|
|
3259
3271
|
.md\:w-4\/12 {
|
|
3260
3272
|
width: calc(4 / 12 * 100%);
|
|
3261
3273
|
}
|
|
@@ -3268,6 +3280,9 @@
|
|
|
3268
3280
|
.md\:w-37\.5 {
|
|
3269
3281
|
width: calc(var(--spacing) * 37.5);
|
|
3270
3282
|
}
|
|
3283
|
+
.md\:w-225 {
|
|
3284
|
+
width: calc(var(--spacing) * 225);
|
|
3285
|
+
}
|
|
3271
3286
|
.md\:max-w-md {
|
|
3272
3287
|
max-width: var(--container-md);
|
|
3273
3288
|
}
|
|
@@ -3283,6 +3298,9 @@
|
|
|
3283
3298
|
.md\:gap-5 {
|
|
3284
3299
|
gap: calc(var(--spacing) * 5);
|
|
3285
3300
|
}
|
|
3301
|
+
.md\:gap-20 {
|
|
3302
|
+
gap: calc(var(--spacing) * 20);
|
|
3303
|
+
}
|
|
3286
3304
|
:where(.md\:space-y-3 > :not(:last-child)) {
|
|
3287
3305
|
--tw-space-y-reverse: 0;
|
|
3288
3306
|
margin-block-start: calc(calc(var(--spacing) * 3) * var(--tw-space-y-reverse));
|
|
@@ -3316,6 +3334,10 @@
|
|
|
3316
3334
|
font-size: var(--text-base);
|
|
3317
3335
|
line-height: var(--tw-leading, var(--text-base--line-height));
|
|
3318
3336
|
}
|
|
3337
|
+
.md\:text-lg {
|
|
3338
|
+
font-size: var(--text-lg);
|
|
3339
|
+
line-height: var(--tw-leading, var(--text-lg--line-height));
|
|
3340
|
+
}
|
|
3319
3341
|
.md\:text-sm {
|
|
3320
3342
|
font-size: var(--text-sm);
|
|
3321
3343
|
line-height: var(--tw-leading, var(--text-sm--line-height));
|