negodesign 0.0.27 → 0.0.28
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/dist/assets/placeholder-company.png +0 -0
- package/dist/assets/placeholder-image.png +0 -0
- package/dist/components/core/card/highlight/01/CardHighlight01.svelte +24 -5
- package/dist/components/core/card/highlight/02/CardHighlight02.svelte +22 -7
- package/dist/components/core/card/highlight/data.js +4 -1
- package/dist/components/core/card/promotion/CardPromotion.svelte +25 -4
- package/dist/components/core/card/shared/CardStartPrice.svelte +25 -27
- package/dist/components/core/card/shared/CardTags.svelte +54 -57
- package/dist/components/core/carousel/highlights/ui/CarouselHighlights.svelte +4 -2
- package/dist/components/core/carousel/promotion/ui/CarouselPromotion.svelte +2 -2
- package/dist/globals.css +8 -41
- package/package.json +1 -1
|
Binary file
|
|
Binary file
|
|
@@ -5,6 +5,9 @@
|
|
|
5
5
|
import CardDescription from "../../shared/CardDescription.svelte";
|
|
6
6
|
import CardFavorite from "../../shared/CardFavorite.svelte";
|
|
7
7
|
import CardTags from "../../shared/CardTags.svelte";
|
|
8
|
+
import ImgPlaceholderCompany from "../../../../../assets/placeholder-company.png";
|
|
9
|
+
import ImgPlaceholder from "../../../../../assets/placeholder-image.png";
|
|
10
|
+
|
|
8
11
|
/**
|
|
9
12
|
* Card component with a title and content.
|
|
10
13
|
* @component
|
|
@@ -32,15 +35,25 @@
|
|
|
32
35
|
class="flex gap-1 bg-white dark:bg-background p-3 rounded-lg shadow border"
|
|
33
36
|
>
|
|
34
37
|
<aside class="relative rounded-lg border h-50">
|
|
35
|
-
<div class="left-1 z-2 flex gap-1 w-50">
|
|
38
|
+
<div class="absolute top-3 left-1 z-2 flex gap-1 w-50">
|
|
36
39
|
{#if isLoading}
|
|
37
40
|
<Skeleton class="w-hull h-full rounded-lg" />
|
|
38
41
|
{:else if logo}
|
|
39
|
-
<img
|
|
42
|
+
<img
|
|
43
|
+
src={logo}
|
|
44
|
+
alt={`Logo company ${title}`}
|
|
45
|
+
class="rounded-lg w-8 h-8 object-cover object-center"
|
|
46
|
+
/>
|
|
47
|
+
{:else}
|
|
48
|
+
<img
|
|
49
|
+
src={ImgPlaceholderCompany}
|
|
50
|
+
alt={logo}
|
|
51
|
+
class="rounded-lg w-8 h-8 object-cover object-center"
|
|
52
|
+
/>
|
|
40
53
|
{/if}
|
|
41
54
|
</div>
|
|
42
55
|
|
|
43
|
-
<div class="absolute top-3 right-1">
|
|
56
|
+
<div class="absolute top-3 right-1 z-2">
|
|
44
57
|
<CardFavorite
|
|
45
58
|
{id}
|
|
46
59
|
{isFavorite}
|
|
@@ -50,12 +63,18 @@
|
|
|
50
63
|
</div>
|
|
51
64
|
|
|
52
65
|
{#if isLoading}
|
|
53
|
-
<Skeleton class="rounded-lg w-
|
|
66
|
+
<Skeleton class="rounded-lg w-50 h-full object-cover object-center" />
|
|
54
67
|
{:else if imageUrl}
|
|
55
68
|
<img
|
|
56
69
|
src={imageUrl}
|
|
57
70
|
alt={imageUrl}
|
|
58
|
-
class="rounded-lg w-
|
|
71
|
+
class="rounded-lg w-50 h-full object-cover object-center"
|
|
72
|
+
/>
|
|
73
|
+
{:else}
|
|
74
|
+
<img
|
|
75
|
+
src={ImgPlaceholder}
|
|
76
|
+
alt={imageUrl}
|
|
77
|
+
class="rounded-lg w-50 h-full object-cover object-center"
|
|
59
78
|
/>
|
|
60
79
|
{/if}
|
|
61
80
|
<div class="absolute inset-0 bg-black/5 rounded-sm h-full w-full"></div>
|
|
@@ -5,6 +5,8 @@
|
|
|
5
5
|
import CardDescription from "../../shared/CardDescription.svelte";
|
|
6
6
|
import CardFavorite from "../../shared/CardFavorite.svelte";
|
|
7
7
|
import CardTags from "../../shared/CardTags.svelte";
|
|
8
|
+
import ImgPlaceholderCompany from "../../../../../assets/placeholder-company.png";
|
|
9
|
+
import ImgPlaceholder from "../../../../../assets/placeholder-image.png";
|
|
8
10
|
/**
|
|
9
11
|
* Card component with a title and content.
|
|
10
12
|
* @component
|
|
@@ -31,16 +33,28 @@
|
|
|
31
33
|
<article
|
|
32
34
|
class="flex flex-col gap-1 bg-white dark:bg-background p-3 rounded-lg shadow border"
|
|
33
35
|
>
|
|
34
|
-
<aside class="relative rounded-lg border h-
|
|
35
|
-
<div class="left-1 z-2 flex gap-1
|
|
36
|
+
<aside class="relative rounded-lg border h-36">
|
|
37
|
+
<div class="absolute top-3 left-1 z-2 flex gap-1">
|
|
36
38
|
{#if isLoading}
|
|
37
|
-
<Skeleton class="w-
|
|
39
|
+
<Skeleton class="w-full h-full rounded-lg" />
|
|
38
40
|
{:else if logo}
|
|
39
|
-
<img
|
|
41
|
+
<img
|
|
42
|
+
src={logo}
|
|
43
|
+
alt={logo}
|
|
44
|
+
class="rounded-lg w-8 h-8 object-cover object-center"
|
|
45
|
+
onerror={(e) =>
|
|
46
|
+
((e.target as HTMLImageElement).src = ImgPlaceholderCompany)}
|
|
47
|
+
/>
|
|
48
|
+
{:else}
|
|
49
|
+
<img
|
|
50
|
+
src={ImgPlaceholderCompany}
|
|
51
|
+
alt={logo}
|
|
52
|
+
class="rounded-lg w-8 h-8 object-cover object-center"
|
|
53
|
+
/>
|
|
40
54
|
{/if}
|
|
41
55
|
</div>
|
|
42
56
|
|
|
43
|
-
<div class="absolute top-3 right-1">
|
|
57
|
+
<div class="absolute top-3 right-1 z-2">
|
|
44
58
|
<CardFavorite
|
|
45
59
|
{id}
|
|
46
60
|
{isFavorite}
|
|
@@ -56,11 +70,12 @@
|
|
|
56
70
|
src={imageUrl}
|
|
57
71
|
alt={imageUrl}
|
|
58
72
|
class="rounded-lg w-full h-full object-cover object-center"
|
|
73
|
+
onerror={(e) => ((e.target as HTMLImageElement).src = ImgPlaceholder)}
|
|
59
74
|
/>
|
|
60
75
|
{/if}
|
|
61
76
|
<div class="absolute inset-0 bg-black/5 rounded-sm h-full w-full"></div>
|
|
62
77
|
</aside>
|
|
63
|
-
<div class="px-2">
|
|
78
|
+
<div class="px-2 w-55">
|
|
64
79
|
<div class="rounded-md">
|
|
65
80
|
{#if isLoading}
|
|
66
81
|
<Skeleton class="h-4 w-30 rounded-lg" />
|
|
@@ -69,7 +84,7 @@
|
|
|
69
84
|
{/if}
|
|
70
85
|
</div>
|
|
71
86
|
|
|
72
|
-
<div class="
|
|
87
|
+
<div class="my-2">
|
|
73
88
|
<CardDescription
|
|
74
89
|
{content}
|
|
75
90
|
{isLoading}
|
|
@@ -14,7 +14,8 @@ const items = [
|
|
|
14
14
|
},
|
|
15
15
|
{
|
|
16
16
|
id: 2,
|
|
17
|
-
imageUrl: 'https://images.unsplash.com/photo-1507525428034-b723cf961d3e?q=80&w=1170&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D',
|
|
17
|
+
//imageUrl: 'https://images.unsplash.com/photo-1507525428034-b723cf961d3e?q=80&w=1170&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D',
|
|
18
|
+
imageUrl: undefined,
|
|
18
19
|
title: 'Miramar Suites',
|
|
19
20
|
content: "Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since 1966, when designers at Letraset and James Mosley, the librarian at St Bride Printing Library in London, took a 1914 Cicero translation and scrambled it to make dummy text for Letraset's Body Type sheets. It has survived not only many decades, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised thanks to these sheets and more recently with desktop publishing software like Aldus PageMaker and Microsoft Word including versions of Lorem Ipsum",
|
|
20
21
|
tags: [
|
|
@@ -23,6 +24,7 @@ const items = [
|
|
|
23
24
|
{ icon: NecklaceIcon, text: 'Rua 19', },
|
|
24
25
|
]
|
|
25
26
|
},
|
|
27
|
+
/*
|
|
26
28
|
{
|
|
27
29
|
id: 3,
|
|
28
30
|
imageUrl: 'https://images.unsplash.com/photo-1507525428034-b723cf961d3e?q=80&w=1170&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D',
|
|
@@ -58,5 +60,6 @@ const items = [
|
|
|
58
60
|
{ icon: NecklaceIcon, text: 'Rua 19', },
|
|
59
61
|
]
|
|
60
62
|
},
|
|
63
|
+
*/
|
|
61
64
|
];
|
|
62
65
|
export default items;
|
|
@@ -7,6 +7,9 @@
|
|
|
7
7
|
import CardFavorite from "../shared/CardFavorite.svelte";
|
|
8
8
|
import CardStartPrice from "../shared/CardStartPrice.svelte";
|
|
9
9
|
import CardTags from "../shared/CardTags.svelte";
|
|
10
|
+
import ImgPlaceHolderGallery from "../../../../assets/placeholder-image.png";
|
|
11
|
+
import ImgPlaceholderCompany from "../../../../assets/placeholder-company.png";
|
|
12
|
+
|
|
10
13
|
/**
|
|
11
14
|
* Card component with a title and content.
|
|
12
15
|
* @component
|
|
@@ -40,7 +43,23 @@
|
|
|
40
43
|
{#if isLoading}
|
|
41
44
|
<Skeleton class="h-5 w-20 rounded-full bg-black/20" />
|
|
42
45
|
{:else if logo}
|
|
43
|
-
<img
|
|
46
|
+
<img
|
|
47
|
+
src={logo}
|
|
48
|
+
width={30}
|
|
49
|
+
height={30}
|
|
50
|
+
alt={title}
|
|
51
|
+
onerror={(e) =>
|
|
52
|
+
((e.target as HTMLImageElement).src = ImgPlaceholderCompany)}
|
|
53
|
+
class="rounded-lg"
|
|
54
|
+
/>
|
|
55
|
+
{:else}
|
|
56
|
+
<img
|
|
57
|
+
src={ImgPlaceholderCompany}
|
|
58
|
+
width={30}
|
|
59
|
+
height={30}
|
|
60
|
+
alt={title}
|
|
61
|
+
class="rounded-lg"
|
|
62
|
+
/>
|
|
44
63
|
{/if}
|
|
45
64
|
</div>
|
|
46
65
|
|
|
@@ -56,13 +75,15 @@
|
|
|
56
75
|
|
|
57
76
|
{#if isLoading}
|
|
58
77
|
<Skeleton
|
|
59
|
-
class="rounded-lg
|
|
78
|
+
class="rounded-lg h-30 w-full object-cover object-center bg-black/15"
|
|
60
79
|
/>
|
|
61
80
|
{:else if imageUrl}
|
|
62
81
|
<img
|
|
63
82
|
src={imageUrl}
|
|
64
83
|
alt={imageUrl}
|
|
65
|
-
class="rounded-tr-lg rounded-tl-lg h-
|
|
84
|
+
class="rounded-tr-lg rounded-tl-lg h-36 w-full object-cover object-center"
|
|
85
|
+
onerror={(e) =>
|
|
86
|
+
((e.target as HTMLImageElement).src = ImgPlaceHolderGallery)}
|
|
66
87
|
/>
|
|
67
88
|
{/if}
|
|
68
89
|
<div class="absolute inset-0 bg-black/5 rounded-sm h-full w-full"></div>
|
|
@@ -87,7 +108,7 @@
|
|
|
87
108
|
<CardDescription {content} {isDescriptionIcon} {isDescriptionLabel} />
|
|
88
109
|
</div>
|
|
89
110
|
|
|
90
|
-
<div class="w-full mb-
|
|
111
|
+
<div class="w-full mb-2">
|
|
91
112
|
<CardTags {tags} />
|
|
92
113
|
</div>
|
|
93
114
|
|
|
@@ -1,34 +1,32 @@
|
|
|
1
1
|
<script lang="ts">
|
|
2
|
-
|
|
2
|
+
import StartBg from "../../../../assets/start.png";
|
|
3
3
|
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
4
|
+
type Props = {
|
|
5
|
+
newPrice?: string | number;
|
|
6
|
+
oldPrice?: string | number;
|
|
7
|
+
type?: "start" | "normal";
|
|
8
|
+
};
|
|
9
9
|
|
|
10
|
-
|
|
10
|
+
let { newPrice, oldPrice, type = "normal" }: Props = $props();
|
|
11
11
|
</script>
|
|
12
12
|
|
|
13
13
|
<div class="relative min-w-25 md:min-w-32">
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
<div class="z-20 font-bold">{newPrice}</div>
|
|
33
|
-
{/if}
|
|
14
|
+
{#if type == "start"}
|
|
15
|
+
<img
|
|
16
|
+
src={StartBg}
|
|
17
|
+
alt=""
|
|
18
|
+
class="shadow rounded-tl-lg rounded-bl-lg md:w-20 md:h-20 lg:w-32 lg:h-24 absolute"
|
|
19
|
+
/>
|
|
20
|
+
{/if}
|
|
21
|
+
{#if newPrice && oldPrice}
|
|
22
|
+
<div class="z-20 flex justify-center items-center">
|
|
23
|
+
<div class="font-extrabold text-lg">{newPrice}</div>
|
|
24
|
+
<div class="mx-2">/</div>
|
|
25
|
+
<div class="font-semibold line-through text-red-600 text-[10px]">
|
|
26
|
+
{oldPrice}
|
|
27
|
+
</div>
|
|
28
|
+
</div>
|
|
29
|
+
{:else}
|
|
30
|
+
<div class="z-20 font-bold">{newPrice}</div>
|
|
31
|
+
{/if}
|
|
34
32
|
</div>
|
|
@@ -1,73 +1,70 @@
|
|
|
1
1
|
<script lang="ts">
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
2
|
+
import { HugeiconsIcon } from "@hugeicons/svelte";
|
|
3
|
+
import type { CardTagsProps } from "../types";
|
|
4
|
+
import Skeleton from "../../../ui/skeleton/skeleton.svelte";
|
|
5
5
|
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
6
|
+
type Props = {
|
|
7
|
+
className?: string;
|
|
8
|
+
tags?: CardTagsProps[];
|
|
9
|
+
isTagBorderBottom?: boolean;
|
|
10
|
+
isWrap?: boolean;
|
|
11
|
+
isLoading?: boolean;
|
|
12
|
+
};
|
|
13
13
|
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
14
|
+
const {
|
|
15
|
+
tags,
|
|
16
|
+
className,
|
|
17
|
+
isTagBorderBottom,
|
|
18
|
+
isWrap = false,
|
|
19
|
+
isLoading = false,
|
|
20
|
+
}: Props = $props();
|
|
21
21
|
|
|
22
|
-
|
|
22
|
+
let isJustify = $derived(tags?.length == 2 || tags?.length == 3);
|
|
23
23
|
</script>
|
|
24
24
|
|
|
25
25
|
{#snippet createBadge(tag: CardTagsProps)}
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
{/if}
|
|
37
|
-
<div class="whitespace-nowrap">{tag.text}</div>
|
|
38
|
-
</div>
|
|
26
|
+
<div
|
|
27
|
+
class="flex items-center h-5 shrink-0 {isTagBorderBottom
|
|
28
|
+
? 'border border-gray-200 rounded-full px-2 py-1'
|
|
29
|
+
: ''}"
|
|
30
|
+
>
|
|
31
|
+
{#if tag.icon}
|
|
32
|
+
<HugeiconsIcon icon={tag.icon} class="mr-0.5 h-3.75 w-3.75 shrink-0" />
|
|
33
|
+
{/if}
|
|
34
|
+
<div class="whitespace-nowrap">{tag.text}</div>
|
|
35
|
+
</div>
|
|
39
36
|
{/snippet}
|
|
40
37
|
|
|
41
38
|
{#snippet skeletonTag()}
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
39
|
+
<div class="my-2 flex gap-5">
|
|
40
|
+
{#each Array.from({ length: 3 }) as it, i (i)}
|
|
41
|
+
<Skeleton class="h-5 w-25 bg-black/50" />
|
|
42
|
+
{/each}
|
|
43
|
+
</div>
|
|
47
44
|
{/snippet}
|
|
48
45
|
|
|
49
46
|
{#if isWrap}
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
47
|
+
<div class="flex flex-wrap gap-2 md:gap-5 {className}">
|
|
48
|
+
{#if isLoading}
|
|
49
|
+
{@render skeletonTag()}
|
|
50
|
+
{:else if tags && tags.length > 0}
|
|
51
|
+
{#each tags as tag, i (i)}
|
|
52
|
+
{@render createBadge(tag)}
|
|
53
|
+
{/each}
|
|
54
|
+
{/if}
|
|
55
|
+
</div>
|
|
59
56
|
{:else}
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
{isJustify ? 'justify-between' : 'gap-4 md:gap-5 lg:gap-10'}
|
|
57
|
+
<div
|
|
58
|
+
class="flex overflow-x-auto no-scrollbar w-full
|
|
59
|
+
{isJustify ? 'justify-between gap-3' : 'gap-4 md:gap-5 lg:gap-10'}
|
|
63
60
|
{className}"
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
61
|
+
>
|
|
62
|
+
{#if isLoading}
|
|
63
|
+
{@render skeletonTag()}
|
|
64
|
+
{:else if tags && tags.length > 0}
|
|
65
|
+
{#each tags as tag, i (i)}
|
|
66
|
+
{@render createBadge(tag)}
|
|
67
|
+
{/each}
|
|
68
|
+
{/if}
|
|
69
|
+
</div>
|
|
73
70
|
{/if}
|
|
@@ -21,6 +21,7 @@
|
|
|
21
21
|
isDescriptionIcon,
|
|
22
22
|
isDescriptionLabel,
|
|
23
23
|
onButtonViewAll,
|
|
24
|
+
positionButtonPreviousAndNext,
|
|
24
25
|
}: CarouselHighlightsProps = $props();
|
|
25
26
|
|
|
26
27
|
const responsive = useDevice();
|
|
@@ -38,18 +39,19 @@
|
|
|
38
39
|
isBorderBottom={false}
|
|
39
40
|
{isButtonPreviousAndNext}
|
|
40
41
|
{buttonPreviousAndNextClass}
|
|
42
|
+
{positionButtonPreviousAndNext}
|
|
41
43
|
containerClass="w-full"
|
|
42
44
|
plugins={[Autoplay({ delay: 4000, stopOnInteraction: true })]}
|
|
43
45
|
>
|
|
44
46
|
{#if isLoading}
|
|
45
47
|
{#each Array.from( { length: responsive.isMobile ? 5 : 10 }, ) as _, i (`loading-${i}`)}
|
|
46
|
-
<Carousel.Item class="pl-2
|
|
48
|
+
<Carousel.Item class="pl-2 basis-auto">
|
|
47
49
|
<CardHighlight id={i} {isLoading} {varient} />
|
|
48
50
|
</Carousel.Item>
|
|
49
51
|
{/each}
|
|
50
52
|
{:else}
|
|
51
53
|
{#each items as item, i (`highlight-${item.id ?? i}`)}
|
|
52
|
-
<Carousel.Item class="pl-2
|
|
54
|
+
<Carousel.Item class="pl-2 basis-auto">
|
|
53
55
|
<CardHighlight
|
|
54
56
|
{...item}
|
|
55
57
|
{varient}
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
>
|
|
45
45
|
{#if isLoading}
|
|
46
46
|
{#each Array.from( { length: responsive.isMobile ? 5 : 10 }, ) as _, i (`loading-${i}`)}
|
|
47
|
-
<Carousel.Item class="pl-2
|
|
47
|
+
<Carousel.Item class="pl-2 w-75 basis-auto">
|
|
48
48
|
<CardPromotion
|
|
49
49
|
id={i}
|
|
50
50
|
{isLoading}
|
|
@@ -55,7 +55,7 @@
|
|
|
55
55
|
{/each}
|
|
56
56
|
{:else}
|
|
57
57
|
{#each items as item, i (`promotion-${item.id ?? i}`)}
|
|
58
|
-
<Carousel.Item class="pl-2
|
|
58
|
+
<Carousel.Item class="pl-2 w-75 basis-auto">
|
|
59
59
|
<CardPromotion {...item} {isDescriptionIcon} {isDescriptionLabel} />
|
|
60
60
|
</Carousel.Item>
|
|
61
61
|
{/each}
|
package/dist/globals.css
CHANGED
|
@@ -513,9 +513,6 @@
|
|
|
513
513
|
.mb-2 {
|
|
514
514
|
margin-bottom: calc(var(--spacing) * 2);
|
|
515
515
|
}
|
|
516
|
-
.mb-3 {
|
|
517
|
-
margin-bottom: calc(var(--spacing) * 3);
|
|
518
|
-
}
|
|
519
516
|
.mb-4 {
|
|
520
517
|
margin-bottom: calc(var(--spacing) * 4);
|
|
521
518
|
}
|
|
@@ -711,8 +708,11 @@
|
|
|
711
708
|
.h-24 {
|
|
712
709
|
height: calc(var(--spacing) * 24);
|
|
713
710
|
}
|
|
714
|
-
.h-
|
|
715
|
-
height: calc(var(--spacing) *
|
|
711
|
+
.h-30 {
|
|
712
|
+
height: calc(var(--spacing) * 30);
|
|
713
|
+
}
|
|
714
|
+
.h-36 {
|
|
715
|
+
height: calc(var(--spacing) * 36);
|
|
716
716
|
}
|
|
717
717
|
.h-50 {
|
|
718
718
|
height: calc(var(--spacing) * 50);
|
|
@@ -828,6 +828,9 @@
|
|
|
828
828
|
.w-50 {
|
|
829
829
|
width: calc(var(--spacing) * 50);
|
|
830
830
|
}
|
|
831
|
+
.w-55 {
|
|
832
|
+
width: calc(var(--spacing) * 55);
|
|
833
|
+
}
|
|
831
834
|
.w-56 {
|
|
832
835
|
width: calc(var(--spacing) * 56);
|
|
833
836
|
}
|
|
@@ -3342,9 +3345,6 @@
|
|
|
3342
3345
|
.md\:h-20 {
|
|
3343
3346
|
height: calc(var(--spacing) * 20);
|
|
3344
3347
|
}
|
|
3345
|
-
.md\:h-25 {
|
|
3346
|
-
height: calc(var(--spacing) * 25);
|
|
3347
|
-
}
|
|
3348
3348
|
.md\:h-100 {
|
|
3349
3349
|
height: calc(var(--spacing) * 100);
|
|
3350
3350
|
}
|
|
@@ -3372,9 +3372,6 @@
|
|
|
3372
3372
|
.md\:w-20 {
|
|
3373
3373
|
width: calc(var(--spacing) * 20);
|
|
3374
3374
|
}
|
|
3375
|
-
.md\:w-25 {
|
|
3376
|
-
width: calc(var(--spacing) * 25);
|
|
3377
|
-
}
|
|
3378
3375
|
.md\:w-225 {
|
|
3379
3376
|
width: calc(var(--spacing) * 225);
|
|
3380
3377
|
}
|
|
@@ -3384,9 +3381,6 @@
|
|
|
3384
3381
|
.md\:min-w-32 {
|
|
3385
3382
|
min-width: calc(var(--spacing) * 32);
|
|
3386
3383
|
}
|
|
3387
|
-
.md\:basis-1\/2 {
|
|
3388
|
-
flex-basis: calc(1 / 2 * 100%);
|
|
3389
|
-
}
|
|
3390
3384
|
.md\:grid-cols-2 {
|
|
3391
3385
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
3392
3386
|
}
|
|
@@ -3430,10 +3424,6 @@
|
|
|
3430
3424
|
font-size: var(--text-2xl);
|
|
3431
3425
|
line-height: var(--tw-leading, var(--text-2xl--line-height));
|
|
3432
3426
|
}
|
|
3433
|
-
.md\:text-3xl {
|
|
3434
|
-
font-size: var(--text-3xl);
|
|
3435
|
-
line-height: var(--tw-leading, var(--text-3xl--line-height));
|
|
3436
|
-
}
|
|
3437
3427
|
.md\:text-4xl {
|
|
3438
3428
|
font-size: var(--text-4xl);
|
|
3439
3429
|
line-height: var(--tw-leading, var(--text-4xl--line-height));
|
|
@@ -3450,10 +3440,6 @@
|
|
|
3450
3440
|
font-size: var(--text-sm);
|
|
3451
3441
|
line-height: var(--tw-leading, var(--text-sm--line-height));
|
|
3452
3442
|
}
|
|
3453
|
-
.md\:text-xl {
|
|
3454
|
-
font-size: var(--text-xl);
|
|
3455
|
-
line-height: var(--tw-leading, var(--text-xl--line-height));
|
|
3456
|
-
}
|
|
3457
3443
|
.md\:text-\[14px\] {
|
|
3458
3444
|
font-size: 14px;
|
|
3459
3445
|
}
|
|
@@ -3515,33 +3501,18 @@
|
|
|
3515
3501
|
.lg\:h-24 {
|
|
3516
3502
|
height: calc(var(--spacing) * 24);
|
|
3517
3503
|
}
|
|
3518
|
-
.lg\:h-45 {
|
|
3519
|
-
height: calc(var(--spacing) * 45);
|
|
3520
|
-
}
|
|
3521
3504
|
.lg\:h-105 {
|
|
3522
3505
|
height: calc(var(--spacing) * 105);
|
|
3523
3506
|
}
|
|
3524
3507
|
.lg\:w-32 {
|
|
3525
3508
|
width: calc(var(--spacing) * 32);
|
|
3526
3509
|
}
|
|
3527
|
-
.lg\:w-45 {
|
|
3528
|
-
width: calc(var(--spacing) * 45);
|
|
3529
|
-
}
|
|
3530
3510
|
.lg\:w-105 {
|
|
3531
3511
|
width: calc(var(--spacing) * 105);
|
|
3532
3512
|
}
|
|
3533
3513
|
.lg\:max-w-100 {
|
|
3534
3514
|
max-width: calc(var(--spacing) * 100);
|
|
3535
3515
|
}
|
|
3536
|
-
.lg\:basis-1\/3 {
|
|
3537
|
-
flex-basis: calc(1 / 3 * 100%);
|
|
3538
|
-
}
|
|
3539
|
-
.lg\:basis-1\/4 {
|
|
3540
|
-
flex-basis: calc(1 / 4 * 100%);
|
|
3541
|
-
}
|
|
3542
|
-
.lg\:basis-auto {
|
|
3543
|
-
flex-basis: auto;
|
|
3544
|
-
}
|
|
3545
3516
|
.lg\:grid-cols-3 {
|
|
3546
3517
|
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
3547
3518
|
}
|
|
@@ -3551,10 +3522,6 @@
|
|
|
3551
3522
|
.lg\:gap-15 {
|
|
3552
3523
|
gap: calc(var(--spacing) * 15);
|
|
3553
3524
|
}
|
|
3554
|
-
.lg\:text-4xl {
|
|
3555
|
-
font-size: var(--text-4xl);
|
|
3556
|
-
line-height: var(--tw-leading, var(--text-4xl--line-height));
|
|
3557
|
-
}
|
|
3558
3525
|
.lg\:text-\[80px\] {
|
|
3559
3526
|
font-size: 80px;
|
|
3560
3527
|
}
|