do-ui-design-system 0.0.12 → 0.1.0
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/atoms/Button/Button.svelte +37 -0
- package/dist/{components/atoms → atoms}/Button/Button.svelte.d.ts +7 -5
- package/dist/{components/atoms → atoms}/Button/iProps.d.ts +3 -2
- package/dist/{components/atoms → atoms}/Icons/Icon.svelte +4 -3
- package/dist/{components/atoms → atoms}/Icons/Icon.svelte.d.ts +1 -1
- package/dist/do-theme/button.css +66 -26
- package/dist/do-theme/font.css +2 -1
- package/dist/do-theme/icomoon/backup-icons.json +1 -1
- package/dist/do-theme/icomoon/fonts/icomoon.eot +0 -0
- package/dist/do-theme/icomoon/fonts/icomoon.svg +33 -0
- package/dist/do-theme/icomoon/fonts/icomoon.ttf +0 -0
- package/dist/do-theme/icomoon/fonts/icomoon.woff +0 -0
- package/dist/do-theme/icomoon/iconList.d.ts +1 -1
- package/dist/do-theme/icomoon/iconList.js +12 -2
- package/dist/do-theme/icomoon/icons.css +37 -7
- package/dist/do-theme/index.css +5 -16
- package/dist/do-theme/post-compiled.css +1661 -482
- package/dist/do-theme/var-dark.css +1 -4
- package/dist/do-theme/var-light.css +15 -23
- package/dist/index.d.ts +3 -3
- package/dist/index.js +5 -3
- package/dist/molecules/IconButton/IconButton.svelte +45 -0
- package/dist/{components/molecules → molecules}/IconButton/IconButton.svelte.d.ts +11 -9
- package/dist/molecules/IconButton/iProps.d.ts +14 -0
- package/dist/molecules/IconButton/iProps.js +1 -0
- package/package.json +15 -47
- package/src/lib/do-theme/index.css +5 -16
- package/dist/components/atoms/Button/Button.stories.svelte +0 -92
- package/dist/components/atoms/Button/Button.stories.svelte.d.ts +0 -19
- package/dist/components/atoms/Button/Button.svelte +0 -34
- package/dist/components/atoms/Icons/Icons.stories.svelte +0 -50
- package/dist/components/atoms/Icons/Icons.stories.svelte.d.ts +0 -18
- package/dist/components/index.d.ts +0 -2
- package/dist/components/index.js +0 -3
- package/dist/components/molecules/IconButton/IconButton.stories.svelte +0 -77
- package/dist/components/molecules/IconButton/IconButton.stories.svelte.d.ts +0 -19
- package/dist/components/molecules/IconButton/IconButton.svelte +0 -48
- package/dist/components/molecules/IconButton/iProps.d.ts +0 -13
- package/dist/do-theme/icomoon/icomoon.eot +0 -0
- package/dist/do-theme/icomoon/icomoon.svg +0 -23
- package/dist/do-theme/icomoon/icomoon.ttf +0 -0
- package/dist/do-theme/icomoon/icomoon.woff +0 -0
- package/src/lib/do-theme/post-compiled.css +0 -482
- /package/dist/{components/atoms → atoms}/Button/iProps.js +0 -0
- /package/dist/{components/atoms → atoms}/Icons/iProps.d.ts +0 -0
- /package/dist/{components/atoms → atoms}/Icons/iProps.js +0 -0
- /package/dist/{components/atoms → atoms}/index.d.ts +0 -0
- /package/dist/{components/atoms → atoms}/index.js +0 -0
- /package/dist/{components/molecules/IconButton/iProps.js → do-theme/icomoon/generate-icon-list.d.cts} +0 -0
- /package/dist/{components/molecules → molecules}/index.d.ts +0 -0
- /package/dist/{components/molecules → molecules}/index.js +0 -0
|
@@ -1,48 +0,0 @@
|
|
|
1
|
-
<script lang="ts">
|
|
2
|
-
import {Button, Icon} from '../../atoms';
|
|
3
|
-
import type { iProps } from './iProps.ts';
|
|
4
|
-
|
|
5
|
-
export let color: iProps['color'] = 'btn-primary';
|
|
6
|
-
export let size: iProps['size'] = 'btn-md';
|
|
7
|
-
export let label: iProps['label'] = '';
|
|
8
|
-
export let disabled: iProps['disabled'] = false;
|
|
9
|
-
export let loading: iProps['loading'] = false;
|
|
10
|
-
export let iconName: iProps['iconName'] = '';
|
|
11
|
-
export let iconSize: iProps['iconSize'] = 'text-md';
|
|
12
|
-
export let iconColor: iProps['iconColor'] = 'inherit';
|
|
13
|
-
export let iconPosition: iProps['iconPosition'] = 'end';
|
|
14
|
-
</script>
|
|
15
|
-
|
|
16
|
-
<!-- @component
|
|
17
|
-
```Svelte
|
|
18
|
-
<IconButton label?={'text'} color?={'color'} size?={'size'} on:click={()=>{}} disabled?={disabled} loading?={loading} iconName?={'iconName'} iconSize?={'iconSize'} />
|
|
19
|
-
```
|
|
20
|
-
- `color?`: 'btn-primary' | 'btn-secondary' | 'btn-accent' | 'btn-neutral', or any Tailwind color class
|
|
21
|
-
- `size?`: any Tailwind size class
|
|
22
|
-
- `label?`: string
|
|
23
|
-
- `disabled?`: boolean
|
|
24
|
-
- `loading?`: boolean
|
|
25
|
-
- `iconName?`: any icon name from the Icon component
|
|
26
|
-
- `iconSize?`: any Tailwind text size class
|
|
27
|
-
- `iconColor?`: any tailwind color class
|
|
28
|
-
- `iconPosition?`: 'start' | 'end'
|
|
29
|
-
```
|
|
30
|
-
-->
|
|
31
|
-
|
|
32
|
-
<Button {...$$restProps} {color} {size} {disabled} on:click>
|
|
33
|
-
|
|
34
|
-
{#if loading}
|
|
35
|
-
<span
|
|
36
|
-
class={`loading loading-spinner ${iconPosition === 'start' ? 'order-1' : 'order-2'} px-1.5`}
|
|
37
|
-
class:!inline={loading}
|
|
38
|
-
role="status"> </span
|
|
39
|
-
>
|
|
40
|
-
{:else}
|
|
41
|
-
<div class={`${iconPosition === 'start' ? 'order-1' : 'order-2'}`}>
|
|
42
|
-
<Icon name={iconName} size={iconSize} color={iconColor}/>
|
|
43
|
-
</div>
|
|
44
|
-
{/if}
|
|
45
|
-
{#if label}
|
|
46
|
-
<span class={iconPosition === 'start' ? 'order-2' : 'order-1'}>{label}</span>
|
|
47
|
-
{/if}
|
|
48
|
-
</Button>
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import type { IconNames } from '../../../do-theme/icomoon/iconList.ts';
|
|
2
|
-
import type { HTMLButtonAttributes } from 'svelte/elements';
|
|
3
|
-
export interface iProps extends HTMLButtonAttributes {
|
|
4
|
-
color?: 'btn-primary' | 'btn-secondary' | 'btn-neutral' | 'btn-accent' | string;
|
|
5
|
-
size?: 'btn-sm' | 'btn-md' | 'btn-lg' | string;
|
|
6
|
-
label?: string;
|
|
7
|
-
disabled?: boolean;
|
|
8
|
-
loading?: boolean;
|
|
9
|
-
iconName: IconNames | '';
|
|
10
|
-
iconSize?: string;
|
|
11
|
-
iconColor?: string;
|
|
12
|
-
iconPosition?: 'start' | 'end';
|
|
13
|
-
}
|
|
Binary file
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" standalone="no"?>
|
|
2
|
-
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
|
3
|
-
<svg xmlns="http://www.w3.org/2000/svg">
|
|
4
|
-
<metadata>Generated by IcoMoon</metadata>
|
|
5
|
-
<defs>
|
|
6
|
-
<font id="icomoon" horiz-adv-x="1024">
|
|
7
|
-
<font-face units-per-em="1024" ascent="960" descent="-64" />
|
|
8
|
-
<missing-glyph horiz-adv-x="1024" />
|
|
9
|
-
<glyph unicode=" " horiz-adv-x="512" d="" />
|
|
10
|
-
<glyph unicode="" glyph-name="chain" d="M256 630.851c-48.5 0-95.006-19.265-129.302-53.551s-53.551-80.804-53.551-129.302c0-48.5 19.265-95.006 53.551-129.302s80.804-53.551 129.302-53.551h166.080v-73.135h-166.080c-67.887 0-133.014 26.968-181.017 74.983-48.012 48.012-74.983 113.125-74.983 181.017s26.969 133.014 74.983 181.017c48.013 48.013 113.125 74.983 181.017 74.983h163.218v-73.135h-163.218zM604.782 703.991h163.218c67.893 0 133.014-26.969 181.017-74.983s74.983-113.125 74.983-181.017c0-67.887-26.968-133.014-74.983-181.017s-113.124-74.983-181.017-74.983h-166.077v73.135h166.077c48.5 0 95.006 19.265 129.302 53.551s53.557 80.804 53.557 129.302-19.266 95.006-53.557 129.302c-34.291 34.291-80.797 53.551-129.302 53.551h-163.218v73.135zM276.729 484.56h475.111v-73.135h-475.111v73.135z" />
|
|
11
|
-
<glyph unicode="" glyph-name="check" d="M792.037 768.139c15.223-13.267 16.809-36.376 3.53-51.6l-310.858-356.568c-13.267-15.225-36.376-16.809-51.6-3.533s-16.809 36.376-3.533 51.6l310.858 356.568c13.267 15.225 36.371 16.809 51.601 3.533zM1011.51 768.094c15.204-13.303 16.739-36.404 3.437-51.607l-512.003-585.144c-6.666-7.618-16.188-12.131-26.307-12.47s-19.921 3.534-27.078 10.692l-219.432 219.429c-14.283 14.283-14.283 37.438 0 51.721s37.438 14.283 51.721 0l191.788-191.788 486.258 555.723c13.299 15.204 36.404 16.74 51.607 3.438zM10.712 400.715c14.283 14.283 37.438 14.283 51.721 0l219.432-219.432c14.283-14.284 14.283-37.434 0-51.717s-37.438-14.284-51.721 0l-219.432 219.429c-14.283 14.283-14.283 37.438 0 51.721z" />
|
|
12
|
-
<glyph unicode="" glyph-name="copy" d="M250.33 827.439c0 15.84 12.837 28.682 28.682 28.682h465.972c15.84 0 28.682-12.837 28.682-28.682s-12.835-28.682-28.682-28.682h-465.972c-15.84 0-28.682 12.837-28.682 28.682zM183.764 727.591c0 15.84 12.837 28.682 28.682 28.682h599.106c15.84 0 28.682-12.837 28.682-28.682s-12.835-28.682-28.682-28.682h-599.106c-15.84 0-28.682 12.837-28.682 28.682zM172.651 572.416c-17.326 0-31.377-14.051-31.377-31.377v-412.432c0-17.326 14.051-31.379 31.377-31.379h678.696c17.326 0 31.379 14.053 31.379 31.379v412.432c0 17.326-14.053 31.377-31.379 31.377h-678.696zM83.91 541.039c0 49.004 39.726 88.741 88.741 88.741h678.696c49.004 0 88.742-39.727 88.742-88.741v-412.432c0-49.004-39.73-88.738-88.742-88.738h-678.696c-49.004 0-88.741 39.725-88.741 88.738v412.432z" />
|
|
13
|
-
<glyph unicode="" glyph-name="database" d="M121.495 797.284c-19.331-19.046-27.443-37.365-27.443-54.261s8.112-35.215 27.443-54.261c19.419-19.127 48.781-37.488 87.038-53.432 76.419-31.844 183.694-52.118 303.463-52.118s227.045 20.273 303.467 52.118c38.262 15.943 67.622 34.303 87.034 53.432 19.333 19.046 27.445 37.365 27.445 54.261s-8.112 35.215-27.445 54.261c-19.419 19.127-48.78 37.488-87.034 53.432-76.421 31.844-183.696 52.118-303.467 52.118s-227.044-20.273-303.463-52.118c-38.266-15.943-67.627-34.303-87.038-53.432zM189.621 896.1c83.75 34.893 197.736 55.9 322.378 55.9s238.629-21.007 322.379-55.9c41.819-17.422 77.269-38.798 102.635-63.787 25.456-25.076 42.114-55.265 42.114-89.289s-16.657-64.214-42.114-89.289c-25.365-24.989-60.816-46.365-102.635-63.787-83.75-34.893-197.738-55.9-322.379-55.9s-238.627 21.007-322.378 55.9c-41.819 17.422-77.269 38.798-102.638 63.787-25.455 25.076-42.112 55.265-42.112 89.289s16.655 64.214 42.112 89.289c25.367 24.989 60.819 46.365 102.638 63.787zM69.459 569.389c13.576 0 24.588-11.005 24.588-24.588 0-16.89 8.114-35.207 27.454-54.254 19.429-19.13 48.793-37.488 87.064-53.435 76.433-31.846 183.709-52.119 303.436-52.119 119.723 0 227.003 20.272 303.436 52.119 38.272 15.948 67.637 34.303 87.060 53.435 19.344 19.047 27.456 37.365 27.456 54.254 0 13.576 11.008 24.588 24.588 24.588s24.588-11.005 24.588-24.588c0-34.027-16.663-64.217-42.122-89.289-25.376-24.986-60.826-46.362-102.657-63.787-83.758-34.895-197.749-55.9-322.339-55.9s-238.585 21.004-322.339 55.9c-41.824 17.423-77.278 38.799-102.658 63.787-25.463 25.073-42.122 55.263-42.122 89.289 0 13.576 11.005 24.588 24.588 24.588zM69.459 371.172c13.576 0 24.588-11.008 24.588-24.588 0-16.891 8.114-35.206 27.454-54.256 19.429-19.124 48.793-37.488 87.064-53.435 76.433-31.846 183.709-52.119 303.436-52.119 119.723 0 227.003 20.272 303.436 52.119 38.272 15.948 67.637 34.303 87.060 53.435 19.344 19.051 27.456 37.366 27.456 54.256 0 13.576 11.008 24.588 24.588 24.588s24.588-11.008 24.588-24.588c0-34.027-16.663-64.215-42.122-89.292-25.376-24.986-60.826-46.362-102.657-63.787-83.758-34.895-197.749-55.905-322.339-55.905s-238.585 21.009-322.339 55.905c-41.824 17.419-77.278 38.794-102.658 63.787-25.463 25.077-42.122 55.264-42.122 89.292 0 13.576 11.005 24.588 24.588 24.588zM69.459 769.361c13.576 0 24.588-11.004 24.588-24.588v-593.554c0-16.56 8.032-34.622 27.373-53.488 19.418-18.938 48.79-37.131 87.073-52.929 76.452-31.551 183.759-51.637 303.505-51.637 119.749 0 227.056 20.085 303.508 51.637 38.282 15.796 67.653 33.988 87.067 52.929 19.338 18.865 27.373 36.929 27.373 53.488v593.554c0 13.576 11.008 24.588 24.588 24.588s24.588-11.004 24.588-24.588v-593.554c0-33.871-16.741-63.85-42.209-88.687-25.381-24.762-60.837-45.925-102.651-63.178-83.734-34.555-197.696-55.354-322.267-55.354s-238.533 20.801-322.267 55.354c-41.808 17.253-77.268 38.416-102.651 63.178-25.465 24.837-42.207 54.817-42.207 88.687v593.554c0 13.576 11.005 24.588 24.588 24.588z" />
|
|
14
|
-
<glyph unicode="" glyph-name="menu" d="M27.42 690.29c0 22.305 18.072 40.379 40.379 40.379h888.384c22.304 0 40.379-18.072 40.379-40.379s-18.072-40.379-40.379-40.379h-888.384c-22.305 0-40.379 18.072-40.379 40.379zM27.42 448c0 22.305 18.072 40.379 40.379 40.379h888.384c22.304 0 40.379-18.072 40.379-40.379s-18.072-40.379-40.379-40.379h-888.384c-22.305 0-40.379 18.072-40.379 40.379zM27.42 205.71c0 22.304 18.072 40.379 40.379 40.379h888.384c22.304 0 40.379-18.072 40.379-40.379s-18.072-40.379-40.379-40.379h-888.384c-22.305 0-40.379 18.072-40.379 40.379z" />
|
|
15
|
-
<glyph unicode="" glyph-name="refresh" d="M539.877 922.926l187.33-218.553-187.33-218.554-54.614 46.813 133.099 155.28c-1.285 0.159-2.633 0.319-4.057 0.476-20.927 2.322-53.269 3.996-102.306 3.996-64.020 0-126.601-18.984-179.833-54.552s-94.718-86.121-119.218-145.267c-24.499-59.146-30.909-124.229-18.42-187.020s43.318-120.466 88.587-165.734c45.269-45.268 102.945-76.098 165.735-88.586 62.789-12.492 127.873-6.081 187.019 18.419s109.7 65.985 145.267 119.219c35.568 53.229 54.553 115.809 54.553 179.833v35.965h71.931v-35.965c0-78.247-23.205-154.738-66.676-219.798s-105.259-115.766-177.55-145.709c-72.286-29.948-151.834-37.779-228.578-22.515s-147.236 52.946-202.565 108.271c-55.329 55.329-93.008 125.822-108.273 202.568-15.265 76.741-7.431 156.287 22.513 228.578s80.651 134.078 145.712 177.549c65.059 43.472 141.549 66.674 219.796 66.674 27.767 0 50.965-0.518 70.327-1.443l-97.063 113.24 54.614 46.812z" />
|
|
16
|
-
<glyph unicode="" glyph-name="contrast" d="M511.187 913.577c-91.922-0.002-181.779-27.262-258.206-78.33s-135.999-123.655-171.176-208.58c-35.178-84.925-44.379-178.374-26.449-268.526 17.933-90.157 62.195-172.97 127.192-237.971 43.081-43.506 94.332-78.072 150.813-101.708 56.481-23.642 117.072-35.883 178.297-36.040 61.23-0.149 121.881 11.8 178.475 35.159 56.597 23.364 108.017 57.676 151.311 100.97s77.606 94.716 100.965 151.311c23.364 56.597 35.308 117.245 35.159 178.475-0.149 61.225-12.394 121.819-36.036 178.297-23.637 56.481-58.207 107.732-101.708 150.812-43.059 43.294-94.273 77.617-150.683 100.985-56.415 23.366-116.895 35.313-177.957 35.147zM112.814 448.809c0 219.665 178.707 398.372 398.373 398.372v-796.746c-219.666 0-398.373 178.705-398.373 398.374z" />
|
|
17
|
-
<glyph unicode="" glyph-name="arrow" d="M513.856 867.344c16.873 16.873 44.223 16.873 61.096 0l388.798-388.8c16.874-16.873 16.874-44.223 0-61.096l-388.798-388.798c-16.873-16.874-44.223-16.874-61.096 0s-16.873 44.219 0 61.092l315.052 315.057h-738.102c-23.858 0-43.2 19.342-43.2 43.2s19.342 43.2 43.2 43.2h738.102l-315.052 315.055c-16.873 16.873-16.873 44.223 0 61.096z" />
|
|
18
|
-
<glyph unicode="" glyph-name="arrows-up-down" d="M480.789 891.076c17.236 17.236 45.17 17.236 62.407 0l235.353-235.356c17.237-17.236 17.237-45.17 0-62.407-17.234-17.236-45.17-17.236-62.405 0l-204.145 204.145-204.145-204.145c-17.236-17.236-45.17-17.236-62.407 0s-17.236 45.17 0 62.407l235.356 235.356zM245.439 302.682c17.236 17.237 45.17 17.237 62.407 0l204.145-204.145 204.145 204.145c17.236 17.237 45.17 17.237 62.405 0 17.237-17.237 17.237-45.17 0-62.403l-235.353-235.356c-17.236-17.237-45.17-17.237-62.407 0l-235.356 235.356c-17.236 17.237-17.236 45.17 0 62.403z" />
|
|
19
|
-
<glyph unicode="" glyph-name="chevron-down" d="M79.239 680.143c17.41 17.41 45.638 17.41 63.050 0l369.719-369.719 369.719 369.719c17.412 17.41 45.631 17.41 63.043 0s17.412-45.638 0-63.050l-401.234-401.236c-17.41-17.41-45.638-17.41-63.050 0l-401.236 401.236c-17.41 17.41-17.41 45.638 0 63.050z" />
|
|
20
|
-
<glyph unicode="" glyph-name="download" d="M511.962 934.57c19.195 0 34.755-15.56 34.755-34.755v-576.438l114.445 114.443c13.571 13.573 35.576 13.573 49.152 0 13.571-13.573 13.571-35.579 0-49.149l-173.777-173.778c-6.518-6.516-15.358-10.181-24.575-10.181s-18.058 3.665-24.575 10.181l-173.775 173.778c-13.573 13.571-13.573 35.576 0 49.149s35.579 13.573 49.151 0l114.445-114.443v576.438c0 19.195 15.56 34.755 34.755 34.755zM251.337 587.020c-13.826 0-27.086-5.492-36.863-15.269s-15.269-23.037-15.269-36.863v-451.817c0-13.824 5.492-27.087 15.269-36.864s23.037-15.268 36.863-15.268h521.328c13.824 0 27.082 5.492 36.859 15.268 9.782 9.777 15.274 23.040 15.274 36.864v451.817c0 13.827-5.492 27.086-15.274 36.863-9.777 9.777-23.035 15.269-36.859 15.269h-86.889c-19.197 0-34.757 15.56-34.757 34.755s15.559 34.755 34.757 34.755h86.889c32.261 0 63.202-12.816 86.011-35.628 22.814-22.813 35.63-53.752 35.63-86.014v-451.817c0-32.261-12.816-63.202-35.63-86.011-22.808-22.814-53.749-35.63-86.011-35.63h-521.328c-32.261 0-63.202 12.816-86.014 35.63-22.812 22.808-35.628 53.749-35.628 86.011v451.817c0 32.262 12.816 63.202 35.628 86.014s53.753 35.628 86.014 35.628h86.888c19.195 0 34.755-15.56 34.755-34.755s-15.56-34.755-34.755-34.755h-86.888z" />
|
|
21
|
-
<glyph unicode="" glyph-name="plus" d="M512 881.778c20.532 0 37.179-16.647 37.179-37.179v-359.413h359.412c20.531 0 37.179-16.647 37.179-37.179s-16.647-37.179-37.179-37.179h-359.412v-359.412c0-20.531-16.647-37.179-37.179-37.179s-37.179 16.647-37.179 37.179v359.412h-359.412c-20.532 0-37.179 16.647-37.179 37.179s16.646 37.179 37.179 37.179h359.412v359.413c0 20.532 16.647 37.179 37.179 37.179z" />
|
|
22
|
-
<glyph unicode="" glyph-name="trash" d="M359.523 883.062c15.458 15.458 36.42 24.138 58.282 24.138h188.39c21.857 0 42.821-8.685 58.28-24.138s24.14-36.42 24.14-58.282v-105.97h200.165c19.507 0 35.325-15.814 35.325-35.325s-15.814-35.325-35.325-35.325h-14.207l-38.491-539.039c0-0.005 0 0 0 0-2.325-32.678-16.952-63.262-40.918-85.586-23.971-22.329-55.52-34.74-88.274-34.74h-389.776c-32.758 0-64.302 12.411-88.274 34.74-23.968 22.324-38.593 52.898-40.919 85.575 0 0 0.001-0.005 0 0l-38.489 539.049h-14.207c-19.508 0-35.325 15.814-35.325 35.325s15.814 35.325 35.325 35.325h200.165v105.97c0 21.858 8.685 42.824 24.138 58.282zM406.030 718.81h211.94v105.97c0 3.125-1.237 6.115-3.448 8.326s-5.203 3.449-8.327 3.449h-188.39c-3.125 0-6.115-1.239-8.326-3.449s-3.449-5.201-3.449-8.326v-105.97zM220.255 648.165l38.134-534.021c1.059-14.848 7.705-28.763 18.601-38.906 10.896-10.149 25.232-15.792 40.125-15.792h389.776c14.894 0 29.23 5.644 40.127 15.792 10.893 10.143 17.537 24.048 18.599 38.901l38.132 534.023h-583.494zM417.805 530.42c19.508 0 35.325-15.814 35.325-35.325v-282.585c0-19.507-15.814-35.325-35.325-35.325s-35.325 15.814-35.325 35.325v282.585c0 19.508 15.814 35.325 35.325 35.325zM606.195 530.42c19.507 0 35.325-15.814 35.325-35.325v-282.585c0-19.507-15.814-35.325-35.325-35.325s-35.325 15.814-35.325 35.325v282.585c0 19.508 15.814 35.325 35.325 35.325z" />
|
|
23
|
-
</font></defs></svg>
|
|
Binary file
|
|
Binary file
|
|
@@ -1,482 +0,0 @@
|
|
|
1
|
-
/*! tailwindcss v4.1.6 | MIT License | https://tailwindcss.com */
|
|
2
|
-
@layer properties;
|
|
3
|
-
*, ::after, ::before, ::backdrop, ::file-selector-button {
|
|
4
|
-
box-sizing: border-box;
|
|
5
|
-
margin: 0;
|
|
6
|
-
padding: 0;
|
|
7
|
-
border: 0 solid;
|
|
8
|
-
}
|
|
9
|
-
html, :host {
|
|
10
|
-
line-height: 1.5;
|
|
11
|
-
-webkit-text-size-adjust: 100%;
|
|
12
|
-
-moz-tab-size: 4;
|
|
13
|
-
-o-tab-size: 4;
|
|
14
|
-
tab-size: 4;
|
|
15
|
-
font-family: ui-sans-serif, system-ui, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
|
|
16
|
-
font-feature-settings: normal;
|
|
17
|
-
font-variation-settings: normal;
|
|
18
|
-
-webkit-tap-highlight-color: transparent;
|
|
19
|
-
}
|
|
20
|
-
hr {
|
|
21
|
-
height: 0;
|
|
22
|
-
color: inherit;
|
|
23
|
-
border-top-width: 1px;
|
|
24
|
-
}
|
|
25
|
-
abbr:where([title]) {
|
|
26
|
-
-webkit-text-decoration: underline dotted;
|
|
27
|
-
text-decoration: underline dotted;
|
|
28
|
-
}
|
|
29
|
-
h1, h2, h3, h4, h5, h6 {
|
|
30
|
-
font-size: inherit;
|
|
31
|
-
font-weight: inherit;
|
|
32
|
-
}
|
|
33
|
-
a {
|
|
34
|
-
color: inherit;
|
|
35
|
-
-webkit-text-decoration: inherit;
|
|
36
|
-
text-decoration: inherit;
|
|
37
|
-
}
|
|
38
|
-
b, strong {
|
|
39
|
-
font-weight: bolder;
|
|
40
|
-
}
|
|
41
|
-
code, kbd, samp, pre {
|
|
42
|
-
font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New', monospace;
|
|
43
|
-
font-feature-settings: normal;
|
|
44
|
-
font-variation-settings: normal;
|
|
45
|
-
font-size: 1em;
|
|
46
|
-
}
|
|
47
|
-
small {
|
|
48
|
-
font-size: 80%;
|
|
49
|
-
}
|
|
50
|
-
sub, sup {
|
|
51
|
-
font-size: 75%;
|
|
52
|
-
line-height: 0;
|
|
53
|
-
position: relative;
|
|
54
|
-
vertical-align: baseline;
|
|
55
|
-
}
|
|
56
|
-
sub {
|
|
57
|
-
bottom: -0.25em;
|
|
58
|
-
}
|
|
59
|
-
sup {
|
|
60
|
-
top: -0.5em;
|
|
61
|
-
}
|
|
62
|
-
table {
|
|
63
|
-
text-indent: 0;
|
|
64
|
-
border-color: inherit;
|
|
65
|
-
border-collapse: collapse;
|
|
66
|
-
}
|
|
67
|
-
:-moz-focusring {
|
|
68
|
-
outline: auto;
|
|
69
|
-
}
|
|
70
|
-
progress {
|
|
71
|
-
vertical-align: baseline;
|
|
72
|
-
}
|
|
73
|
-
summary {
|
|
74
|
-
display: list-item;
|
|
75
|
-
}
|
|
76
|
-
ol, ul, menu {
|
|
77
|
-
list-style: none;
|
|
78
|
-
}
|
|
79
|
-
img, svg, video, canvas, audio, iframe, embed, object {
|
|
80
|
-
display: block;
|
|
81
|
-
vertical-align: middle;
|
|
82
|
-
}
|
|
83
|
-
img, video {
|
|
84
|
-
max-width: 100%;
|
|
85
|
-
height: auto;
|
|
86
|
-
}
|
|
87
|
-
button, input, select, optgroup, textarea, ::file-selector-button {
|
|
88
|
-
font: inherit;
|
|
89
|
-
font-feature-settings: inherit;
|
|
90
|
-
font-variation-settings: inherit;
|
|
91
|
-
letter-spacing: inherit;
|
|
92
|
-
color: inherit;
|
|
93
|
-
border-radius: 0;
|
|
94
|
-
background-color: transparent;
|
|
95
|
-
opacity: 1;
|
|
96
|
-
}
|
|
97
|
-
:where(select:is([multiple], [size])) optgroup {
|
|
98
|
-
font-weight: bolder;
|
|
99
|
-
}
|
|
100
|
-
:where(select:is([multiple], [size])) optgroup option {
|
|
101
|
-
padding-inline-start: 20px;
|
|
102
|
-
}
|
|
103
|
-
::file-selector-button {
|
|
104
|
-
margin-inline-end: 4px;
|
|
105
|
-
}
|
|
106
|
-
::-moz-placeholder {
|
|
107
|
-
opacity: 1;
|
|
108
|
-
}
|
|
109
|
-
::placeholder {
|
|
110
|
-
opacity: 1;
|
|
111
|
-
}
|
|
112
|
-
@supports (not (-webkit-appearance: -apple-pay-button)) or (contain-intrinsic-size: 1px) {
|
|
113
|
-
::-moz-placeholder {
|
|
114
|
-
color: currentcolor;
|
|
115
|
-
@supports (color: color-mix(in lab, red, red)) {
|
|
116
|
-
color: color-mix(in oklab, currentcolor 50%, transparent);
|
|
117
|
-
}
|
|
118
|
-
}
|
|
119
|
-
::placeholder {
|
|
120
|
-
color: currentcolor;
|
|
121
|
-
@supports (color: color-mix(in lab, red, red)) {
|
|
122
|
-
color: color-mix(in oklab, currentcolor 50%, transparent);
|
|
123
|
-
}
|
|
124
|
-
}
|
|
125
|
-
}
|
|
126
|
-
textarea {
|
|
127
|
-
resize: vertical;
|
|
128
|
-
}
|
|
129
|
-
::-webkit-search-decoration {
|
|
130
|
-
-webkit-appearance: none;
|
|
131
|
-
}
|
|
132
|
-
::-webkit-date-and-time-value {
|
|
133
|
-
min-height: 1lh;
|
|
134
|
-
text-align: inherit;
|
|
135
|
-
}
|
|
136
|
-
::-webkit-datetime-edit {
|
|
137
|
-
display: inline-flex;
|
|
138
|
-
}
|
|
139
|
-
::-webkit-datetime-edit-fields-wrapper {
|
|
140
|
-
padding: 0;
|
|
141
|
-
}
|
|
142
|
-
::-webkit-datetime-edit, ::-webkit-datetime-edit-year-field, ::-webkit-datetime-edit-month-field, ::-webkit-datetime-edit-day-field, ::-webkit-datetime-edit-hour-field, ::-webkit-datetime-edit-minute-field, ::-webkit-datetime-edit-second-field, ::-webkit-datetime-edit-millisecond-field, ::-webkit-datetime-edit-meridiem-field {
|
|
143
|
-
padding-block: 0;
|
|
144
|
-
}
|
|
145
|
-
:-moz-ui-invalid {
|
|
146
|
-
box-shadow: none;
|
|
147
|
-
}
|
|
148
|
-
button, input:where([type='button'], [type='reset'], [type='submit']), ::file-selector-button {
|
|
149
|
-
-webkit-appearance: button;
|
|
150
|
-
-moz-appearance: button;
|
|
151
|
-
appearance: button;
|
|
152
|
-
}
|
|
153
|
-
::-webkit-inner-spin-button, ::-webkit-outer-spin-button {
|
|
154
|
-
height: auto;
|
|
155
|
-
}
|
|
156
|
-
[hidden]:where(:not([hidden='until-found'])) {
|
|
157
|
-
display: none !important;
|
|
158
|
-
}
|
|
159
|
-
.order-1 {
|
|
160
|
-
order: 1;
|
|
161
|
-
}
|
|
162
|
-
.order-2 {
|
|
163
|
-
order: 2;
|
|
164
|
-
}
|
|
165
|
-
.\!inline {
|
|
166
|
-
display: inline !important;
|
|
167
|
-
}
|
|
168
|
-
.contents {
|
|
169
|
-
display: contents;
|
|
170
|
-
}
|
|
171
|
-
.flex {
|
|
172
|
-
display: flex;
|
|
173
|
-
}
|
|
174
|
-
.grid {
|
|
175
|
-
display: grid;
|
|
176
|
-
}
|
|
177
|
-
.hidden {
|
|
178
|
-
display: none;
|
|
179
|
-
}
|
|
180
|
-
.table {
|
|
181
|
-
display: table;
|
|
182
|
-
}
|
|
183
|
-
.transform {
|
|
184
|
-
transform: var(--tw-rotate-x,) var(--tw-rotate-y,) var(--tw-rotate-z,) var(--tw-skew-x,) var(--tw-skew-y,);
|
|
185
|
-
}
|
|
186
|
-
.flex-row {
|
|
187
|
-
flex-direction: row;
|
|
188
|
-
}
|
|
189
|
-
.flex-wrap {
|
|
190
|
-
flex-wrap: wrap;
|
|
191
|
-
}
|
|
192
|
-
.gap-\[2rem\] {
|
|
193
|
-
gap: 2rem;
|
|
194
|
-
}
|
|
195
|
-
.text-inherit {
|
|
196
|
-
color: inherit;
|
|
197
|
-
}
|
|
198
|
-
.underline {
|
|
199
|
-
text-decoration-line: underline;
|
|
200
|
-
}
|
|
201
|
-
.btn {
|
|
202
|
-
font-weight: 500;
|
|
203
|
-
padding: 6px 16px;
|
|
204
|
-
gap: 0.5rem;
|
|
205
|
-
}
|
|
206
|
-
.loading-spinner {
|
|
207
|
-
width: 1em;
|
|
208
|
-
height: 1em;
|
|
209
|
-
}
|
|
210
|
-
.btn-rounded {
|
|
211
|
-
border-radius: 3rem;
|
|
212
|
-
}
|
|
213
|
-
.btn-primary {
|
|
214
|
-
border-color: var(--do-color-border-primary);
|
|
215
|
-
}
|
|
216
|
-
.btn-primary:hover {
|
|
217
|
-
color: var(--color-primary);
|
|
218
|
-
border-color: var(--do-transparent);
|
|
219
|
-
background-color: var(--do-color-primary-hover);
|
|
220
|
-
}
|
|
221
|
-
.btn-primary:disabled {
|
|
222
|
-
color: var(--color-primary-content);
|
|
223
|
-
border-color: var(--do-transparent);
|
|
224
|
-
background-color: var(--do-color-primary-disabled);
|
|
225
|
-
}
|
|
226
|
-
.btn-secondary:hover {
|
|
227
|
-
color: var(--color-primary-content);
|
|
228
|
-
border-color: var(--do-transparent);
|
|
229
|
-
background-color: var(--do-color-secondary-hover);
|
|
230
|
-
}
|
|
231
|
-
.btn-secondary:is(:disabled, [disabled], .btn-disabled):is(:disabled, [disabled], .btn-disabled) {
|
|
232
|
-
border-color: var(--do-transparent);
|
|
233
|
-
background-color: var(--do-transparent);
|
|
234
|
-
}
|
|
235
|
-
.btn-neutral {
|
|
236
|
-
border-color: var(--do-transparent);
|
|
237
|
-
background-color: var(--do-transparent);
|
|
238
|
-
text-decoration: underline;
|
|
239
|
-
}
|
|
240
|
-
.btn-neutral:hover {
|
|
241
|
-
color: var(--color-primary-content);
|
|
242
|
-
border-color: var(--do-transparent);
|
|
243
|
-
background-color: var(--color-primary);
|
|
244
|
-
}
|
|
245
|
-
.btn-neutral:is(:disabled, [disabled], .btn-disabled):is(:disabled, [disabled], .btn-disabled) {
|
|
246
|
-
border-color: var(--do-transparent);
|
|
247
|
-
background-color: var(--do-transparent);
|
|
248
|
-
}
|
|
249
|
-
.btn-neutral:not(i) {
|
|
250
|
-
text-decoration: underline;
|
|
251
|
-
}
|
|
252
|
-
.btn-accent:is(:disabled, [disabled], .btn-disabled):is(:disabled, [disabled], .btn-disabled) {
|
|
253
|
-
color: var(--color-neutral);
|
|
254
|
-
border-color: var(--do-transparent);
|
|
255
|
-
background-color: var(--do-color-accent-disabled);
|
|
256
|
-
}
|
|
257
|
-
.btn-accent:hover {
|
|
258
|
-
color: var(--color-accent);
|
|
259
|
-
border-color: #dbeafe;
|
|
260
|
-
background-color: var(--color-accent-content);
|
|
261
|
-
}
|
|
262
|
-
@font-face {
|
|
263
|
-
font-family: 'icomoon';
|
|
264
|
-
src: url('./lib/do-theme/icomoon/icomoon.eot?98wrl4');
|
|
265
|
-
src: url('./lib/do-theme/icomoon/icomoon.eot?98wrl4#iefix') format('embedded-opentype'), url('./lib/do-theme/icomoon/icomoon.ttf?98wrl4') format('truetype'), url('./lib/do-theme/icomoon/icomoon.woff?98wrl4') format('woff'), url('./lib/do-theme/icomoon/icomoon.svg?98wrl4#icomoon') format('svg');
|
|
266
|
-
font-weight: normal;
|
|
267
|
-
font-style: normal;
|
|
268
|
-
font-display: block;
|
|
269
|
-
}
|
|
270
|
-
[class^="icon-"], [class*=" icon-"] {
|
|
271
|
-
font-family: 'icomoon' !important;
|
|
272
|
-
speak: never;
|
|
273
|
-
font-style: normal;
|
|
274
|
-
font-weight: normal;
|
|
275
|
-
font-variant: normal;
|
|
276
|
-
text-transform: none;
|
|
277
|
-
line-height: 1;
|
|
278
|
-
-webkit-font-smoothing: antialiased;
|
|
279
|
-
-moz-osx-font-smoothing: grayscale;
|
|
280
|
-
}
|
|
281
|
-
.icon-contrast:before {
|
|
282
|
-
content: "\e906";
|
|
283
|
-
}
|
|
284
|
-
.icon-arrow:before {
|
|
285
|
-
content: "\e907";
|
|
286
|
-
}
|
|
287
|
-
.icon-arrows-up-down:before {
|
|
288
|
-
content: "\e908";
|
|
289
|
-
}
|
|
290
|
-
.icon-chevron-down:before {
|
|
291
|
-
content: "\e909";
|
|
292
|
-
}
|
|
293
|
-
.icon-download:before {
|
|
294
|
-
content: "\e90a";
|
|
295
|
-
}
|
|
296
|
-
.icon-plus:before {
|
|
297
|
-
content: "\e90b";
|
|
298
|
-
}
|
|
299
|
-
.icon-trash:before {
|
|
300
|
-
content: "\e90c";
|
|
301
|
-
}
|
|
302
|
-
.icon-chain:before {
|
|
303
|
-
content: "\e900";
|
|
304
|
-
}
|
|
305
|
-
.icon-check:before {
|
|
306
|
-
content: "\e901";
|
|
307
|
-
}
|
|
308
|
-
.icon-copy:before {
|
|
309
|
-
content: "\e902";
|
|
310
|
-
}
|
|
311
|
-
.icon-database:before {
|
|
312
|
-
content: "\e903";
|
|
313
|
-
}
|
|
314
|
-
.icon-menu:before {
|
|
315
|
-
content: "\e904";
|
|
316
|
-
}
|
|
317
|
-
.icon-refresh:before {
|
|
318
|
-
content: "\e905";
|
|
319
|
-
}
|
|
320
|
-
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
|
|
321
|
-
body {
|
|
322
|
-
font-family: 'Inter', sans-serif;
|
|
323
|
-
}
|
|
324
|
-
@layer base {
|
|
325
|
-
:where(:root),:root:has(input.theme-controller[value=light]:checked),[data-theme="light"] {
|
|
326
|
-
color-scheme: light;
|
|
327
|
-
--color-base-100: oklch(100% 0 0);
|
|
328
|
-
--color-base-200: oklch(98% 0 0);
|
|
329
|
-
--color-base-300: oklch(95% 0 0);
|
|
330
|
-
--color-base-content: oklch(21% 0.006 285.885);
|
|
331
|
-
--color-primary: #27272A;
|
|
332
|
-
--color-primary-content: #FAFAFA;
|
|
333
|
-
--color-secondary: #FAFAFA;
|
|
334
|
-
--color-secondary-content: #27272A;
|
|
335
|
-
--color-accent: #1D4ED8;
|
|
336
|
-
--color-accent-content: #EFF6FF;
|
|
337
|
-
--color-neutral: #FAFAFA;
|
|
338
|
-
--color-neutral-content: none;
|
|
339
|
-
--color-info: oklch(70% 0.2 220);
|
|
340
|
-
--color-info-content: oklch(98% 0.01 220);
|
|
341
|
-
--color-success: oklch(65% 0.25 140);
|
|
342
|
-
--color-success-content: oklch(98% 0.01 140);
|
|
343
|
-
--color-warning: oklch(80% 0.25 80);
|
|
344
|
-
--color-warning-content: oklch(20% 0.05 80);
|
|
345
|
-
--color-error: oklch(65% 0.3 30);
|
|
346
|
-
--color-error-content: oklch(98% 0.01 30);
|
|
347
|
-
--radius-selector: 0.25rem;
|
|
348
|
-
--radius-field: 0.25rem;
|
|
349
|
-
--radius-box: 0.25rem;
|
|
350
|
-
--size-selector: 0.25rem;
|
|
351
|
-
--size-field: 0.25rem;
|
|
352
|
-
--border: 1px;
|
|
353
|
-
--depth: 1;
|
|
354
|
-
--noise: 0;
|
|
355
|
-
--do-color-primary-hover: #f5f5f5;
|
|
356
|
-
--do-color-secondary-hover: #3e3e45;
|
|
357
|
-
--do-color-primary-disabled: #a4a4a6;
|
|
358
|
-
--do-color-accent-disabled: #a4b6ed;
|
|
359
|
-
--do-color-border-primary: #3F3F46;
|
|
360
|
-
--do-color-border-secondary: #F4F4F5;
|
|
361
|
-
--do-color-border-accent: #2563EB;
|
|
362
|
-
--do-color-border-accent-hover: #3B82F6;
|
|
363
|
-
--do-transparent: transparent;
|
|
364
|
-
}
|
|
365
|
-
}
|
|
366
|
-
@layer base {
|
|
367
|
-
@media (prefers-color-scheme: dark) {
|
|
368
|
-
:root {
|
|
369
|
-
color-scheme: dark;
|
|
370
|
-
--color-base-100: oklch(25.33% 0.016 252.42);
|
|
371
|
-
--color-base-200: oklch(23.26% 0.014 253.1);
|
|
372
|
-
--color-base-300: oklch(21.15% 0.012 254.09);
|
|
373
|
-
--color-base-content: oklch(97.807% 0.029 256.847);
|
|
374
|
-
--color-primary: #27272A;
|
|
375
|
-
--color-primary-content: #FAFAFA;
|
|
376
|
-
--color-secondary: #FAFAFA;
|
|
377
|
-
--color-secondary-content: #27272A;
|
|
378
|
-
--color-accent: #1D4ED8;
|
|
379
|
-
--color-accent-content: #EFF6FF;
|
|
380
|
-
--color-neutral: #FAFAFA;
|
|
381
|
-
--color-neutral-content: none;
|
|
382
|
-
--color-info: oklch(70% 0.2 220);
|
|
383
|
-
--color-info-content: oklch(98% 0.01 220);
|
|
384
|
-
--color-success: oklch(65% 0.25 140);
|
|
385
|
-
--color-success-content: oklch(98% 0.01 140);
|
|
386
|
-
--color-warning: oklch(80% 0.25 80);
|
|
387
|
-
--color-warning-content: oklch(20% 0.05 80);
|
|
388
|
-
--color-error: oklch(65% 0.3 30);
|
|
389
|
-
--color-error-content: oklch(98% 0.01 30);
|
|
390
|
-
--radius-selector: 0.25rem;
|
|
391
|
-
--radius-field: 0.25rem;
|
|
392
|
-
--radius-box: 0.25rem;
|
|
393
|
-
--size-selector: 0.25rem;
|
|
394
|
-
--size-field: 0.25rem;
|
|
395
|
-
--border: 1px;
|
|
396
|
-
--depth: 1;
|
|
397
|
-
--noise: 0;
|
|
398
|
-
--do-color-primary-hover: #f5f5f5;
|
|
399
|
-
--do-color-secondary-hover: #3e3e45;
|
|
400
|
-
--do-color-primary-disabled: #a4a4a6;
|
|
401
|
-
--do-color-accent-disabled: #a4b6ed;
|
|
402
|
-
--do-color-border-primary: #3F3F46;
|
|
403
|
-
--do-color-border-secondary: #F4F4F5;
|
|
404
|
-
--do-color-border-accent: #2563EB;
|
|
405
|
-
--do-color-border-accent-hover: #3B82F6;
|
|
406
|
-
--do-transparent: transparent;
|
|
407
|
-
}
|
|
408
|
-
}
|
|
409
|
-
}
|
|
410
|
-
@layer base {
|
|
411
|
-
:root:has(input.theme-controller[value=dark]:checked),[data-theme="dark"] {
|
|
412
|
-
color-scheme: dark;
|
|
413
|
-
--color-base-100: oklch(25.33% 0.016 252.42);
|
|
414
|
-
--color-base-200: oklch(23.26% 0.014 253.1);
|
|
415
|
-
--color-base-300: oklch(21.15% 0.012 254.09);
|
|
416
|
-
--color-base-content: oklch(97.807% 0.029 256.847);
|
|
417
|
-
--color-primary: #27272A;
|
|
418
|
-
--color-primary-content: #FAFAFA;
|
|
419
|
-
--color-secondary: #FAFAFA;
|
|
420
|
-
--color-secondary-content: #27272A;
|
|
421
|
-
--color-accent: #1D4ED8;
|
|
422
|
-
--color-accent-content: #EFF6FF;
|
|
423
|
-
--color-neutral: #FAFAFA;
|
|
424
|
-
--color-neutral-content: none;
|
|
425
|
-
--color-info: oklch(70% 0.2 220);
|
|
426
|
-
--color-info-content: oklch(98% 0.01 220);
|
|
427
|
-
--color-success: oklch(65% 0.25 140);
|
|
428
|
-
--color-success-content: oklch(98% 0.01 140);
|
|
429
|
-
--color-warning: oklch(80% 0.25 80);
|
|
430
|
-
--color-warning-content: oklch(20% 0.05 80);
|
|
431
|
-
--color-error: oklch(65% 0.3 30);
|
|
432
|
-
--color-error-content: oklch(98% 0.01 30);
|
|
433
|
-
--radius-selector: 0.25rem;
|
|
434
|
-
--radius-field: 0.25rem;
|
|
435
|
-
--radius-box: 0.25rem;
|
|
436
|
-
--size-selector: 0.25rem;
|
|
437
|
-
--size-field: 0.25rem;
|
|
438
|
-
--border: 1px;
|
|
439
|
-
--depth: 1;
|
|
440
|
-
--noise: 0;
|
|
441
|
-
--do-color-primary-hover: #f5f5f5;
|
|
442
|
-
--do-color-secondary-hover: #3e3e45;
|
|
443
|
-
--do-color-primary-disabled: #a4a4a6;
|
|
444
|
-
--do-color-accent-disabled: #a4b6ed;
|
|
445
|
-
--do-color-border-primary: #3F3F46;
|
|
446
|
-
--do-color-border-secondary: #F4F4F5;
|
|
447
|
-
--do-color-border-accent: #2563EB;
|
|
448
|
-
--do-color-border-accent-hover: #3B82F6;
|
|
449
|
-
--do-transparent: transparent;
|
|
450
|
-
}
|
|
451
|
-
}
|
|
452
|
-
@property --tw-rotate-x {
|
|
453
|
-
syntax: "*";
|
|
454
|
-
inherits: false;
|
|
455
|
-
}
|
|
456
|
-
@property --tw-rotate-y {
|
|
457
|
-
syntax: "*";
|
|
458
|
-
inherits: false;
|
|
459
|
-
}
|
|
460
|
-
@property --tw-rotate-z {
|
|
461
|
-
syntax: "*";
|
|
462
|
-
inherits: false;
|
|
463
|
-
}
|
|
464
|
-
@property --tw-skew-x {
|
|
465
|
-
syntax: "*";
|
|
466
|
-
inherits: false;
|
|
467
|
-
}
|
|
468
|
-
@property --tw-skew-y {
|
|
469
|
-
syntax: "*";
|
|
470
|
-
inherits: false;
|
|
471
|
-
}
|
|
472
|
-
@layer properties {
|
|
473
|
-
@supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
|
|
474
|
-
*, ::before, ::after, ::backdrop {
|
|
475
|
-
--tw-rotate-x: initial;
|
|
476
|
-
--tw-rotate-y: initial;
|
|
477
|
-
--tw-rotate-z: initial;
|
|
478
|
-
--tw-skew-x: initial;
|
|
479
|
-
--tw-skew-y: initial;
|
|
480
|
-
}
|
|
481
|
-
}
|
|
482
|
-
}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|