@aivenio/aquarium 1.10.0 → 1.12.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/_variables.scss +1 -1
- package/dist/_variables_timescale.scss +1 -1
- package/dist/atoms.cjs +67 -46
- package/dist/atoms.mjs +63 -42
- package/dist/src/{common → atoms}/Alert/Alert.d.ts +2 -2
- package/dist/src/atoms/Alert/Alert.js +74 -0
- package/dist/src/{common → atoms}/Banner/Banner.d.ts +2 -2
- package/dist/src/atoms/Banner/Banner.js +57 -0
- package/dist/src/atoms/Card/Card.js +54 -0
- package/dist/src/{common → atoms}/Checkbox/Checkbox.js +2 -2
- package/dist/src/{common → atoms}/Chip/Chip.js +1 -1
- package/dist/src/{common → atoms}/DataList/DataList.js +3 -3
- package/dist/src/{common → atoms}/Dialog/Dialog.d.ts +1 -1
- package/dist/src/{common → atoms}/Dialog/Dialog.js +1 -1
- package/dist/src/atoms/DropdownMenu/DropdownMenu.js +62 -0
- package/dist/src/{common → atoms}/InputGroup/InputGroup.d.ts +1 -1
- package/dist/src/{common → atoms}/InputGroup/InputGroup.js +2 -2
- package/dist/src/{common → atoms}/LineClamp/LineClamp.js +1 -1
- package/dist/src/{common → atoms}/Link/Link.js +1 -1
- package/dist/src/{common → atoms}/Modal/Modal.d.ts +1 -1
- package/dist/src/atoms/Modal/Modal.js +68 -0
- package/dist/src/{common → atoms}/Popover/Popover.js +1 -1
- package/dist/src/{common → atoms}/PopoverDialog/PopoverDialog.js +2 -2
- package/dist/src/{common → atoms}/ProgressBar/ProgressBar.js +1 -1
- package/dist/src/{common → atoms}/RadioButton/RadioButton.js +1 -1
- package/dist/src/{common → atoms}/Section/Section.d.ts +2 -2
- package/dist/src/atoms/Section/Section.js +46 -0
- package/dist/src/{common → atoms}/Select/Select.js +2 -2
- package/dist/src/{common → atoms}/Stepper/Stepper.js +2 -2
- package/dist/src/{common → atoms}/Switch/Switch.js +1 -1
- package/dist/src/{common → atoms}/Table/Table.d.ts +2 -2
- package/dist/src/atoms/Table/Table.js +91 -0
- package/dist/src/{common → atoms}/Timeline/Timeline.js +1 -1
- package/dist/src/{common → atoms}/Typography/Typography.js +1 -1
- package/dist/src/{common → atoms}/index.js +1 -1
- package/dist/src/{components → molecules}/Alert/Alert.d.ts +4 -4
- package/dist/src/molecules/Alert/Alert.js +15 -0
- package/dist/src/molecules/Avatar/Avatar.js +10 -0
- package/dist/src/{components → molecules}/Badge/Badge.js +1 -1
- package/dist/src/{components → molecules}/Banner/Banner.d.ts +1 -1
- package/dist/src/molecules/Banner/Banner.js +44 -0
- package/dist/src/{components → molecules}/Box/Box.d.ts +2 -2
- package/dist/src/{components → molecules}/Box/Box.js +2 -2
- package/dist/src/{components → molecules}/Breadcrumbs/Breadcrumbs.js +2 -2
- package/dist/src/{components → molecules}/Button/Button.d.ts +12 -1
- package/dist/src/molecules/Button/Button.js +108 -0
- package/dist/src/{components → molecules}/Card/Card.d.ts +1 -1
- package/dist/src/molecules/Card/Card.js +48 -0
- package/dist/src/{components → molecules}/Card/Compact.d.ts +1 -1
- package/dist/src/molecules/Card/Compact.js +43 -0
- package/dist/src/{components → molecules}/Card/types.js +1 -1
- package/dist/src/{components → molecules}/Carousel/Carousel.js +4 -4
- package/dist/src/{components → molecules}/Checkbox/Checkbox.d.ts +1 -1
- package/dist/src/molecules/Checkbox/Checkbox.js +29 -0
- package/dist/src/{components → molecules}/CheckboxGroup/CheckboxGroup.d.ts +2 -2
- package/dist/src/molecules/CheckboxGroup/CheckboxGroup.js +61 -0
- package/dist/src/{components → molecules}/Chip/Chip.d.ts +1 -1
- package/dist/src/molecules/Chip/Chip.js +64 -0
- package/dist/src/{components → molecules}/ChoiceChip/ChoiceChip.js +1 -1
- package/dist/src/molecules/Combobox/Combobox.js +109 -0
- package/dist/src/molecules/Container/Container.js +18 -0
- package/dist/src/molecules/Context/Context.js +18 -0
- package/dist/src/{components → molecules}/ControlLabel/ControlLabel.d.ts +1 -1
- package/dist/src/{components → molecules}/ControlLabel/ControlLabel.js +2 -2
- package/dist/src/molecules/DataList/DataList.js +24 -0
- package/dist/src/{components → molecules}/DataTable/DataTable.d.ts +1 -1
- package/dist/src/molecules/DataTable/DataTable.js +42 -0
- package/dist/src/{components → molecules}/Dialog/Dialog.d.ts +2 -2
- package/dist/src/molecules/Dialog/Dialog.js +41 -0
- package/dist/src/{components → molecules}/Divider/Divider.js +1 -1
- package/dist/src/{components → molecules}/Dropdown/Dropdown.d.ts +2 -2
- package/dist/src/molecules/Dropdown/Dropdown.js +88 -0
- package/dist/src/{components → molecules}/DropdownMenu/DropdownMenu.d.ts +1 -1
- package/dist/src/molecules/DropdownMenu/DropdownMenu.js +148 -0
- package/dist/src/molecules/DropdownMenu/utils.js +20 -0
- package/dist/src/{components → molecules}/Element/Element.js +1 -1
- package/dist/src/molecules/EmptyState/EmptyState.js +74 -0
- package/dist/src/{components → molecules}/Flexbox/Flexbox.d.ts +1 -1
- package/dist/src/molecules/Flexbox/Flexbox.js +19 -0
- package/dist/src/{components → molecules}/Flexbox/FlexboxItem.d.ts +1 -1
- package/dist/src/molecules/Flexbox/FlexboxItem.js +16 -0
- package/dist/src/{components → molecules}/Grid/Grid.d.ts +1 -1
- package/dist/src/molecules/Grid/Grid.js +31 -0
- package/dist/src/{components → molecules}/Grid/GridItem.d.ts +1 -1
- package/dist/src/molecules/Grid/GridItem.js +20 -0
- package/dist/src/{components → molecules}/Icon/Icon.js +1 -1
- package/dist/src/{components → molecules}/Input/Input.js +2 -2
- package/dist/src/{components → molecules}/LineClamp/LineClamp.d.ts +1 -1
- package/dist/src/molecules/LineClamp/LineClamp.js +21 -0
- package/dist/src/{components → molecules}/Link/Link.d.ts +1 -1
- package/dist/src/molecules/Link/Link.js +4 -0
- package/dist/src/molecules/List/List.js +6 -0
- package/dist/src/molecules/ListItem/ListItem.js +10 -0
- package/dist/src/{components → molecules}/Modal/Modal.d.ts +2 -2
- package/dist/src/{components → molecules}/Modal/Modal.js +4 -4
- package/dist/src/{components → molecules}/MultiInput/InputChip.js +3 -3
- package/dist/src/molecules/MultiInput/MultiInput.js +153 -0
- package/dist/src/{components → molecules}/MultiSelect/MultiSelect.d.ts +1 -1
- package/dist/src/molecules/MultiSelect/MultiSelect.js +149 -0
- package/dist/src/{components → molecules}/NativeSelect/NativeSelect.js +3 -3
- package/dist/src/{components → molecules}/PageHeader/PageHeader.d.ts +1 -1
- package/dist/src/molecules/PageHeader/PageHeader.js +40 -0
- package/dist/src/molecules/Pagination/Pagination.js +52 -0
- package/dist/src/molecules/Pagination/usePagination.js +36 -0
- package/dist/src/{components → molecules}/Popover/Popover.d.ts +1 -1
- package/dist/src/molecules/Popover/Popover.js +79 -0
- package/dist/src/molecules/Popover/PopoverContext.js +10 -0
- package/dist/src/{components → molecules}/Popover/PopoverWrapper.js +2 -2
- package/dist/src/{components → molecules}/PopoverDialog/PopoverDialog.d.ts +2 -2
- package/dist/src/molecules/PopoverDialog/PopoverDialog.js +28 -0
- package/dist/src/molecules/Portal/Portal.js +3 -0
- package/dist/src/molecules/ProgressBar/ProgressBar.js +23 -0
- package/dist/src/{components → molecules}/RadioButton/RadioButton.d.ts +1 -1
- package/dist/src/molecules/RadioButton/RadioButton.js +29 -0
- package/dist/src/{components → molecules}/RadioButtonGroup/RadioButtonGroup.d.ts +2 -2
- package/dist/src/molecules/RadioButtonGroup/RadioButtonGroup.js +65 -0
- package/dist/src/{components → molecules}/Section/Section.js +4 -4
- package/dist/src/{components → molecules}/SegmentedControl/SegmentedControl.js +1 -1
- package/dist/src/molecules/Select/Select.js +144 -0
- package/dist/src/molecules/Skeleton/Skeleton.js +18 -0
- package/dist/src/molecules/Spacing/Spacing.d.ts +14 -0
- package/dist/src/molecules/Spacing/Spacing.js +18 -0
- package/dist/src/molecules/Stepper/Stepper.js +25 -0
- package/dist/src/{components → molecules}/Switch/Switch.d.ts +1 -1
- package/dist/src/molecules/Switch/Switch.js +29 -0
- package/dist/src/{components → molecules}/SwitchGroup/SwitchGroup.d.ts +2 -2
- package/dist/src/molecules/SwitchGroup/SwitchGroup.js +59 -0
- package/dist/src/{components → molecules}/Table/Table.d.ts +1 -1
- package/dist/src/{components → molecules}/Table/Table.js +2 -2
- package/dist/src/molecules/Tabs/Tabs.js +220 -0
- package/dist/src/{components → molecules}/TagLabel/TagLabel.js +1 -1
- package/dist/src/{components → molecules}/Tailwindify/Tailwindify.js +1 -1
- package/dist/src/molecules/Template/Template.js +23 -0
- package/dist/src/molecules/Textarea/Textarea.js +46 -0
- package/dist/src/molecules/Timeline/Timeline.js +42 -0
- package/dist/src/{components → molecules}/Tooltip/Tooltip.d.ts +1 -1
- package/dist/src/molecules/Tooltip/Tooltip.js +124 -0
- package/dist/src/{components → molecules}/Tooltip/useTooltipTriggerState.js +1 -1
- package/dist/src/{components → molecules}/Typography/Typography.d.ts +1 -1
- package/dist/src/molecules/Typography/Typography.js +89 -0
- package/dist/src/{components → molecules}/index.d.ts +1 -0
- package/dist/src/{components → molecules}/index.js +3 -2
- package/dist/src/system.d.ts +3 -3
- package/dist/src/system.js +4 -4
- package/dist/src/utils/constants.js +2 -2
- package/dist/src/utils/form/FormControl/FormControl.js +2 -2
- package/dist/src/utils/form/HelperText/HelperText.js +2 -2
- package/dist/src/utils/form/InputAdornment/InputAdornment.d.ts +1 -1
- package/dist/src/utils/form/InputAdornment/InputAdornment.js +2 -2
- package/dist/src/utils/form/Label/Label.d.ts +1 -1
- package/dist/src/utils/form/Label/Label.js +4 -4
- package/dist/src/utils/table/types.d.ts +2 -2
- package/dist/src/utils/useStyle.js +2 -2
- package/dist/styles.css +830 -810
- package/dist/styles_timescaledb.css +830 -810
- package/dist/system.cjs +277 -230
- package/dist/system.mjs +262 -217
- package/dist/tailwind.config.js +0 -1
- package/dist/tsconfig.module.tsbuildinfo +1 -1
- package/dist/types/ActionType.d.ts +1 -1
- package/dist/types/tailwindGenerated.d.ts +1 -1
- package/package.json +4 -4
- package/dist/src/common/Alert/Alert.js +0 -74
- package/dist/src/common/Banner/Banner.js +0 -57
- package/dist/src/common/Card/Card.js +0 -54
- package/dist/src/common/DropdownMenu/DropdownMenu.js +0 -62
- package/dist/src/common/Modal/Modal.js +0 -68
- package/dist/src/common/Section/Section.js +0 -46
- package/dist/src/common/Table/Table.js +0 -91
- package/dist/src/components/Alert/Alert.js +0 -12
- package/dist/src/components/Avatar/Avatar.js +0 -10
- package/dist/src/components/Banner/Banner.js +0 -44
- package/dist/src/components/Button/Button.js +0 -105
- package/dist/src/components/Card/Card.js +0 -48
- package/dist/src/components/Card/Compact.js +0 -43
- package/dist/src/components/Checkbox/Checkbox.js +0 -29
- package/dist/src/components/CheckboxGroup/CheckboxGroup.js +0 -61
- package/dist/src/components/Chip/Chip.js +0 -64
- package/dist/src/components/Combobox/Combobox.js +0 -109
- package/dist/src/components/Container/Container.js +0 -18
- package/dist/src/components/Context/Context.js +0 -18
- package/dist/src/components/DataList/DataList.js +0 -24
- package/dist/src/components/DataTable/DataTable.js +0 -42
- package/dist/src/components/Dialog/Dialog.js +0 -41
- package/dist/src/components/Dropdown/Dropdown.js +0 -87
- package/dist/src/components/DropdownMenu/DropdownMenu.js +0 -148
- package/dist/src/components/DropdownMenu/utils.js +0 -20
- package/dist/src/components/EmptyState/EmptyState.js +0 -74
- package/dist/src/components/Flexbox/Flexbox.js +0 -19
- package/dist/src/components/Flexbox/FlexboxItem.js +0 -16
- package/dist/src/components/Grid/Grid.js +0 -31
- package/dist/src/components/Grid/GridItem.js +0 -20
- package/dist/src/components/LineClamp/LineClamp.js +0 -21
- package/dist/src/components/Link/Link.js +0 -4
- package/dist/src/components/List/List.js +0 -6
- package/dist/src/components/ListItem/ListItem.js +0 -10
- package/dist/src/components/MultiInput/MultiInput.js +0 -153
- package/dist/src/components/MultiSelect/MultiSelect.js +0 -149
- package/dist/src/components/PageHeader/PageHeader.js +0 -40
- package/dist/src/components/Pagination/Pagination.js +0 -52
- package/dist/src/components/Pagination/usePagination.js +0 -36
- package/dist/src/components/Popover/Popover.js +0 -79
- package/dist/src/components/Popover/PopoverContext.js +0 -10
- package/dist/src/components/PopoverDialog/PopoverDialog.js +0 -28
- package/dist/src/components/Portal/Portal.js +0 -3
- package/dist/src/components/ProgressBar/ProgressBar.js +0 -23
- package/dist/src/components/RadioButton/RadioButton.js +0 -29
- package/dist/src/components/RadioButtonGroup/RadioButtonGroup.js +0 -65
- package/dist/src/components/Select/Select.js +0 -144
- package/dist/src/components/Skeleton/Skeleton.js +0 -18
- package/dist/src/components/Stepper/Stepper.js +0 -25
- package/dist/src/components/Switch/Switch.js +0 -29
- package/dist/src/components/SwitchGroup/SwitchGroup.js +0 -59
- package/dist/src/components/Tabs/Tabs.js +0 -220
- package/dist/src/components/Template/Template.js +0 -23
- package/dist/src/components/Textarea/Textarea.js +0 -46
- package/dist/src/components/Timeline/Timeline.js +0 -42
- package/dist/src/components/Tooltip/Tooltip.js +0 -110
- package/dist/src/components/Typography/Typography.js +0 -89
- /package/dist/src/{common → atoms}/Card/Card.d.ts +0 -0
- /package/dist/src/{common → atoms}/Checkbox/Checkbox.d.ts +0 -0
- /package/dist/src/{common → atoms}/Chip/Chip.d.ts +0 -0
- /package/dist/src/{common → atoms}/DataList/DataList.d.ts +0 -0
- /package/dist/src/{common → atoms}/DropdownMenu/DropdownMenu.d.ts +0 -0
- /package/dist/src/{common → atoms}/LineClamp/LineClamp.d.ts +0 -0
- /package/dist/src/{common → atoms}/Link/Link.d.ts +0 -0
- /package/dist/src/{common → atoms}/Popover/Popover.d.ts +0 -0
- /package/dist/src/{common → atoms}/PopoverDialog/PopoverDialog.d.ts +0 -0
- /package/dist/src/{common → atoms}/ProgressBar/ProgressBar.d.ts +0 -0
- /package/dist/src/{common → atoms}/RadioButton/RadioButton.d.ts +0 -0
- /package/dist/src/{common → atoms}/Select/Select.d.ts +0 -0
- /package/dist/src/{common → atoms}/Stepper/Stepper.d.ts +0 -0
- /package/dist/src/{common → atoms}/Switch/Switch.d.ts +0 -0
- /package/dist/src/{common → atoms}/Timeline/Timeline.d.ts +0 -0
- /package/dist/src/{common → atoms}/Typography/Typography.d.ts +0 -0
- /package/dist/src/{common → atoms}/index.d.ts +0 -0
- /package/dist/src/{components → molecules}/Avatar/Avatar.d.ts +0 -0
- /package/dist/src/{components → molecules}/Badge/Badge.d.ts +0 -0
- /package/dist/src/{components → molecules}/Breadcrumbs/Breadcrumbs.d.ts +0 -0
- /package/dist/src/{components → molecules}/Card/types.d.ts +0 -0
- /package/dist/src/{components → molecules}/Carousel/Carousel.d.ts +0 -0
- /package/dist/src/{components → molecules}/ChoiceChip/ChoiceChip.d.ts +0 -0
- /package/dist/src/{components → molecules}/Combobox/Combobox.d.ts +0 -0
- /package/dist/src/{components → molecules}/Container/Container.d.ts +0 -0
- /package/dist/src/{components → molecules}/Context/Context.d.ts +0 -0
- /package/dist/src/{components → molecules}/DataList/DataList.d.ts +0 -0
- /package/dist/src/{components → molecules}/Divider/Divider.d.ts +0 -0
- /package/dist/src/{components → molecules}/DropdownMenu/utils.d.ts +0 -0
- /package/dist/src/{components → molecules}/Element/Element.d.ts +0 -0
- /package/dist/src/{components → molecules}/EmptyState/EmptyState.d.ts +0 -0
- /package/dist/src/{components → molecules}/Icon/Icon.d.ts +0 -0
- /package/dist/src/{components → molecules}/Input/Input.d.ts +0 -0
- /package/dist/src/{components → molecules}/List/List.d.ts +0 -0
- /package/dist/src/{components → molecules}/ListItem/ListItem.d.ts +0 -0
- /package/dist/src/{components → molecules}/MultiInput/InputChip.d.ts +0 -0
- /package/dist/src/{components → molecules}/MultiInput/MultiInput.d.ts +0 -0
- /package/dist/src/{components → molecules}/NativeSelect/NativeSelect.d.ts +0 -0
- /package/dist/src/{components → molecules}/Pagination/Pagination.d.ts +0 -0
- /package/dist/src/{components → molecules}/Pagination/usePagination.d.ts +0 -0
- /package/dist/src/{components → molecules}/Popover/PopoverContext.d.ts +0 -0
- /package/dist/src/{components → molecules}/Popover/PopoverWrapper.d.ts +0 -0
- /package/dist/src/{components → molecules}/Portal/Portal.d.ts +0 -0
- /package/dist/src/{components → molecules}/ProgressBar/ProgressBar.d.ts +0 -0
- /package/dist/src/{components → molecules}/Section/Section.d.ts +0 -0
- /package/dist/src/{components → molecules}/SegmentedControl/SegmentedControl.d.ts +0 -0
- /package/dist/src/{components → molecules}/Select/Select.d.ts +0 -0
- /package/dist/src/{components → molecules}/Skeleton/Skeleton.d.ts +0 -0
- /package/dist/src/{components → molecules}/Stepper/Stepper.d.ts +0 -0
- /package/dist/src/{components → molecules}/Tabs/Tabs.d.ts +0 -0
- /package/dist/src/{components → molecules}/TagLabel/TagLabel.d.ts +0 -0
- /package/dist/src/{components → molecules}/Tailwindify/Tailwindify.d.ts +0 -0
- /package/dist/src/{components → molecules}/Template/Template.d.ts +0 -0
- /package/dist/src/{components → molecules}/Textarea/Textarea.d.ts +0 -0
- /package/dist/src/{components → molecules}/Timeline/Timeline.d.ts +0 -0
- /package/dist/src/{components → molecules}/Tooltip/useTooltipTriggerState.d.ts +0 -0
package/dist/styles.css
CHANGED
@@ -667,427 +667,447 @@ input[type='number'].no-arrows {
|
|
667
667
|
letter-spacing: -1.98px;
|
668
668
|
text-transform: none;
|
669
669
|
}
|
670
|
+
.focusable.focus-visible {
|
671
|
+
outline: 2px solid transparent;
|
672
|
+
outline-offset: 2px;
|
673
|
+
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
674
|
+
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
675
|
+
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 rgba(0,0,0,0);
|
676
|
+
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 rgba(0,0,0,0));
|
677
|
+
--tw-ring-opacity: 1;
|
678
|
+
--tw-ring-color: rgb(3 153 227 / var(--tw-ring-opacity));
|
679
|
+
}
|
680
|
+
.focusable:focus-visible {
|
681
|
+
outline: 2px solid transparent;
|
682
|
+
outline-offset: 2px;
|
683
|
+
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
684
|
+
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
685
|
+
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 rgba(0,0,0,0);
|
686
|
+
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 rgba(0,0,0,0));
|
687
|
+
--tw-ring-opacity: 1;
|
688
|
+
--tw-ring-color: rgb(3 153 227 / var(--tw-ring-opacity));
|
689
|
+
}
|
670
690
|
.pointer-events-none {
|
671
|
-
pointer-events: none
|
691
|
+
pointer-events: none;
|
672
692
|
}
|
673
693
|
.visible {
|
674
|
-
visibility: visible
|
694
|
+
visibility: visible;
|
675
695
|
}
|
676
696
|
.invisible {
|
677
|
-
visibility: hidden
|
697
|
+
visibility: hidden;
|
678
698
|
}
|
679
699
|
.collapse {
|
680
|
-
visibility: collapse
|
700
|
+
visibility: collapse;
|
681
701
|
}
|
682
702
|
.fixed {
|
683
|
-
position: fixed
|
703
|
+
position: fixed;
|
684
704
|
}
|
685
705
|
.absolute {
|
686
|
-
position: absolute
|
706
|
+
position: absolute;
|
687
707
|
}
|
688
708
|
.relative {
|
689
|
-
position: relative
|
709
|
+
position: relative;
|
690
710
|
}
|
691
711
|
.sticky {
|
692
|
-
position: sticky
|
712
|
+
position: sticky;
|
693
713
|
}
|
694
714
|
.inset-0 {
|
695
|
-
top: 0
|
696
|
-
right: 0
|
697
|
-
bottom: 0
|
698
|
-
left: 0
|
715
|
+
top: 0;
|
716
|
+
right: 0;
|
717
|
+
bottom: 0;
|
718
|
+
left: 0;
|
699
719
|
}
|
700
720
|
.inset-y-0 {
|
701
|
-
top: 0
|
702
|
-
bottom: 0
|
721
|
+
top: 0;
|
722
|
+
bottom: 0;
|
703
723
|
}
|
704
724
|
.top-0 {
|
705
|
-
top: 0
|
725
|
+
top: 0;
|
706
726
|
}
|
707
727
|
.left-0 {
|
708
|
-
left: 0
|
728
|
+
left: 0;
|
709
729
|
}
|
710
730
|
.right-0 {
|
711
|
-
right: 0
|
731
|
+
right: 0;
|
712
732
|
}
|
713
733
|
.top-\[20px\] {
|
714
|
-
top: 20px
|
734
|
+
top: 20px;
|
715
735
|
}
|
716
736
|
.right-\[28px\] {
|
717
|
-
right: 28px
|
737
|
+
right: 28px;
|
718
738
|
}
|
719
739
|
.-left-1\/2 {
|
720
|
-
left: -50
|
740
|
+
left: -50%;
|
721
741
|
}
|
722
742
|
.top-\[3px\] {
|
723
|
-
top: 3px
|
743
|
+
top: 3px;
|
724
744
|
}
|
725
745
|
.top-\[14px\] {
|
726
|
-
top: 14px
|
746
|
+
top: 14px;
|
727
747
|
}
|
728
748
|
.left-2 {
|
729
|
-
left: 4px
|
749
|
+
left: 4px;
|
730
750
|
}
|
731
751
|
.left-1\/2 {
|
732
|
-
left: 50
|
752
|
+
left: 50%;
|
733
753
|
}
|
734
754
|
.bottom-0 {
|
735
|
-
bottom: 0
|
755
|
+
bottom: 0;
|
736
756
|
}
|
737
757
|
.z-modal {
|
738
|
-
z-index: 100
|
758
|
+
z-index: 100;
|
739
759
|
}
|
740
760
|
.-z-10 {
|
741
|
-
z-index: -10
|
761
|
+
z-index: -10;
|
742
762
|
}
|
743
763
|
.z-10 {
|
744
|
-
z-index: 10
|
764
|
+
z-index: 10;
|
745
765
|
}
|
746
766
|
.z-40 {
|
747
|
-
z-index: 40
|
767
|
+
z-index: 40;
|
748
768
|
}
|
749
769
|
.z-0 {
|
750
|
-
z-index: 0
|
770
|
+
z-index: 0;
|
751
771
|
}
|
752
772
|
.z-20 {
|
753
|
-
z-index: 20
|
773
|
+
z-index: 20;
|
754
774
|
}
|
755
775
|
.col-start-2 {
|
756
|
-
grid-column-start: 2
|
776
|
+
grid-column-start: 2;
|
757
777
|
}
|
758
778
|
.col-start-1 {
|
759
|
-
grid-column-start: 1
|
779
|
+
grid-column-start: 1;
|
760
780
|
}
|
761
781
|
.col-start-3 {
|
762
|
-
grid-column-start: 3
|
782
|
+
grid-column-start: 3;
|
763
783
|
}
|
764
784
|
.row-start-1 {
|
765
|
-
grid-row-start: 1
|
785
|
+
grid-row-start: 1;
|
766
786
|
}
|
767
787
|
.-m-2 {
|
768
|
-
margin: -4px
|
788
|
+
margin: -4px;
|
769
789
|
}
|
770
790
|
.m-3 {
|
771
|
-
margin: 8px
|
791
|
+
margin: 8px;
|
772
792
|
}
|
773
793
|
.m-4 {
|
774
|
-
margin: 12px
|
794
|
+
margin: 12px;
|
775
795
|
}
|
776
796
|
.m-\[1px\] {
|
777
|
-
margin: 1px
|
797
|
+
margin: 1px;
|
778
798
|
}
|
779
799
|
.-mx-4 {
|
780
|
-
margin-left: -12px
|
781
|
-
margin-right: -12px
|
800
|
+
margin-left: -12px;
|
801
|
+
margin-right: -12px;
|
782
802
|
}
|
783
803
|
.mx-7 {
|
784
|
-
margin-left: 32px
|
785
|
-
margin-right: 32px
|
804
|
+
margin-left: 32px;
|
805
|
+
margin-right: 32px;
|
786
806
|
}
|
787
807
|
.my-1 {
|
788
|
-
margin-top: 2px
|
789
|
-
margin-bottom: 2px
|
808
|
+
margin-top: 2px;
|
809
|
+
margin-bottom: 2px;
|
790
810
|
}
|
791
811
|
.mx-3 {
|
792
|
-
margin-left: 8px
|
793
|
-
margin-right: 8px
|
812
|
+
margin-left: 8px;
|
813
|
+
margin-right: 8px;
|
794
814
|
}
|
795
815
|
.my-4 {
|
796
|
-
margin-top: 12px
|
797
|
-
margin-bottom: 12px
|
816
|
+
margin-top: 12px;
|
817
|
+
margin-bottom: 12px;
|
798
818
|
}
|
799
819
|
.mx-2 {
|
800
|
-
margin-left: 4px
|
801
|
-
margin-right: 4px
|
820
|
+
margin-left: 4px;
|
821
|
+
margin-right: 4px;
|
802
822
|
}
|
803
823
|
.mx-1 {
|
804
|
-
margin-left: 2px
|
805
|
-
margin-right: 2px
|
824
|
+
margin-left: 2px;
|
825
|
+
margin-right: 2px;
|
806
826
|
}
|
807
827
|
.mx-0 {
|
808
|
-
margin-left: 0
|
809
|
-
margin-right: 0
|
828
|
+
margin-left: 0;
|
829
|
+
margin-right: 0;
|
810
830
|
}
|
811
831
|
.mb-3 {
|
812
|
-
margin-bottom: 8px
|
832
|
+
margin-bottom: 8px;
|
813
833
|
}
|
814
834
|
.mt-5 {
|
815
|
-
margin-top: 16px
|
835
|
+
margin-top: 16px;
|
816
836
|
}
|
817
837
|
.-mt-4 {
|
818
|
-
margin-top: -12px
|
838
|
+
margin-top: -12px;
|
819
839
|
}
|
820
840
|
.mt-1 {
|
821
|
-
margin-top: 2px
|
841
|
+
margin-top: 2px;
|
822
842
|
}
|
823
843
|
.mt-4 {
|
824
|
-
margin-top: 12px
|
844
|
+
margin-top: 12px;
|
825
845
|
}
|
826
846
|
.mb-5 {
|
827
|
-
margin-bottom: 16px
|
847
|
+
margin-bottom: 16px;
|
828
848
|
}
|
829
849
|
.mr-4 {
|
830
|
-
margin-right: 12px
|
850
|
+
margin-right: 12px;
|
831
851
|
}
|
832
852
|
.ml-2 {
|
833
|
-
margin-left: 4px
|
853
|
+
margin-left: 4px;
|
834
854
|
}
|
835
855
|
.mt-2 {
|
836
|
-
margin-top: 4px
|
856
|
+
margin-top: 4px;
|
837
857
|
}
|
838
858
|
.ml-3 {
|
839
|
-
margin-left: 8px
|
859
|
+
margin-left: 8px;
|
840
860
|
}
|
841
861
|
.mr-1 {
|
842
|
-
margin-right: 2px
|
862
|
+
margin-right: 2px;
|
843
863
|
}
|
844
864
|
.mb-\[-2px\] {
|
845
|
-
margin-bottom: -2px
|
865
|
+
margin-bottom: -2px;
|
846
866
|
}
|
847
867
|
.mb-2 {
|
848
|
-
margin-bottom: 4px
|
868
|
+
margin-bottom: 4px;
|
849
869
|
}
|
850
870
|
.mb-\[7px\] {
|
851
|
-
margin-bottom: 7px
|
871
|
+
margin-bottom: 7px;
|
852
872
|
}
|
853
873
|
.block {
|
854
|
-
display: block
|
874
|
+
display: block;
|
855
875
|
}
|
856
876
|
.inline-block {
|
857
|
-
display: inline-block
|
877
|
+
display: inline-block;
|
858
878
|
}
|
859
879
|
.inline {
|
860
|
-
display: inline
|
880
|
+
display: inline;
|
861
881
|
}
|
862
882
|
.\!inline {
|
863
883
|
display: inline !important;
|
864
884
|
}
|
865
885
|
.flex {
|
866
|
-
display: flex
|
886
|
+
display: flex;
|
867
887
|
}
|
868
888
|
.inline-flex {
|
869
|
-
display: inline-flex
|
889
|
+
display: inline-flex;
|
870
890
|
}
|
871
891
|
.table {
|
872
|
-
display: table
|
892
|
+
display: table;
|
873
893
|
}
|
874
894
|
.\!table {
|
875
895
|
display: table !important;
|
876
896
|
}
|
877
897
|
.grid {
|
878
|
-
display: grid
|
898
|
+
display: grid;
|
879
899
|
}
|
880
900
|
.inline-grid {
|
881
|
-
display: inline-grid
|
901
|
+
display: inline-grid;
|
882
902
|
}
|
883
903
|
.contents {
|
884
|
-
display: contents
|
904
|
+
display: contents;
|
885
905
|
}
|
886
906
|
.hidden {
|
887
|
-
display: none
|
907
|
+
display: none;
|
888
908
|
}
|
889
909
|
.aspect-square {
|
890
|
-
aspect-ratio: 1 / 1
|
910
|
+
aspect-ratio: 1 / 1;
|
891
911
|
}
|
892
912
|
.h-1 {
|
893
|
-
height: 2px
|
913
|
+
height: 2px;
|
894
914
|
}
|
895
915
|
.h-\[20px\] {
|
896
|
-
height: 20px
|
916
|
+
height: 20px;
|
897
917
|
}
|
898
918
|
.h-\[174px\] {
|
899
|
-
height: 174px
|
919
|
+
height: 174px;
|
900
920
|
}
|
901
921
|
.h-\[225px\] {
|
902
|
-
height: 225px
|
922
|
+
height: 225px;
|
903
923
|
}
|
904
924
|
.h-5 {
|
905
|
-
height: 16px
|
925
|
+
height: 16px;
|
906
926
|
}
|
907
927
|
.h-\[1px\] {
|
908
|
-
height: 1px
|
928
|
+
height: 1px;
|
909
929
|
}
|
910
930
|
.h-\[120px\] {
|
911
|
-
height: 120px
|
931
|
+
height: 120px;
|
912
932
|
}
|
913
933
|
.h-2 {
|
914
|
-
height: 4px
|
934
|
+
height: 4px;
|
915
935
|
}
|
916
936
|
.h-\[2px\] {
|
917
|
-
height: 2px
|
937
|
+
height: 2px;
|
918
938
|
}
|
919
939
|
.h-\[3px\] {
|
920
|
-
height: 3px
|
940
|
+
height: 3px;
|
921
941
|
}
|
922
942
|
.h-\[32px\] {
|
923
|
-
height: 32px
|
943
|
+
height: 32px;
|
924
944
|
}
|
925
945
|
.h-\[8px\] {
|
926
|
-
height: 8px
|
946
|
+
height: 8px;
|
927
947
|
}
|
928
948
|
.h-4 {
|
929
|
-
height: 12px
|
949
|
+
height: 12px;
|
930
950
|
}
|
931
951
|
.h-\[50px\] {
|
932
|
-
height: 50px
|
952
|
+
height: 50px;
|
933
953
|
}
|
934
954
|
.h-full {
|
935
|
-
height: 100
|
955
|
+
height: 100%;
|
936
956
|
}
|
937
957
|
.h-\[6px\] {
|
938
|
-
height: 6px
|
958
|
+
height: 6px;
|
939
959
|
}
|
940
960
|
.h-1px {
|
941
|
-
height: 1px
|
961
|
+
height: 1px;
|
942
962
|
}
|
943
963
|
.h-3 {
|
944
|
-
height: 8px
|
964
|
+
height: 8px;
|
945
965
|
}
|
946
966
|
.h-6 {
|
947
|
-
height: 24px
|
967
|
+
height: 24px;
|
948
968
|
}
|
949
969
|
.h-\[56px\] {
|
950
|
-
height: 56px
|
970
|
+
height: 56px;
|
951
971
|
}
|
952
972
|
.h-auto {
|
953
|
-
height: auto
|
973
|
+
height: auto;
|
954
974
|
}
|
955
975
|
.h-\[25px\] {
|
956
|
-
height: 25px
|
976
|
+
height: 25px;
|
957
977
|
}
|
958
978
|
.max-h-full {
|
959
|
-
max-height: 100
|
979
|
+
max-height: 100%;
|
960
980
|
}
|
961
981
|
.min-h-full {
|
962
|
-
min-height: 100
|
982
|
+
min-height: 100%;
|
963
983
|
}
|
964
984
|
.min-h-\[120px\] {
|
965
|
-
min-height: 120px
|
985
|
+
min-height: 120px;
|
966
986
|
}
|
967
987
|
.min-h-\[50px\] {
|
968
|
-
min-height: 50px
|
988
|
+
min-height: 50px;
|
969
989
|
}
|
970
990
|
.w-full {
|
971
|
-
width: 100
|
991
|
+
width: 100%;
|
972
992
|
}
|
973
993
|
.w-\[280px\] {
|
974
|
-
width: 280px
|
994
|
+
width: 280px;
|
975
995
|
}
|
976
996
|
.w-5 {
|
977
|
-
width: 16px
|
997
|
+
width: 16px;
|
978
998
|
}
|
979
999
|
.w-\[32px\] {
|
980
|
-
width: 32px
|
1000
|
+
width: 32px;
|
981
1001
|
}
|
982
1002
|
.w-\[8px\] {
|
983
|
-
width: 8px
|
1003
|
+
width: 8px;
|
984
1004
|
}
|
985
1005
|
.w-\[34px\] {
|
986
|
-
width: 34px
|
1006
|
+
width: 34px;
|
987
1007
|
}
|
988
1008
|
.w-4 {
|
989
|
-
width: 12px
|
1009
|
+
width: 12px;
|
990
1010
|
}
|
991
1011
|
.w-1 {
|
992
|
-
width: 2px
|
1012
|
+
width: 2px;
|
993
1013
|
}
|
994
1014
|
.w-\[6px\] {
|
995
|
-
width: 6px
|
1015
|
+
width: 6px;
|
996
1016
|
}
|
997
1017
|
.w-1px {
|
998
|
-
width: 1px
|
1018
|
+
width: 1px;
|
999
1019
|
}
|
1000
1020
|
.w-2 {
|
1001
|
-
width: 4px
|
1021
|
+
width: 4px;
|
1002
1022
|
}
|
1003
1023
|
.w-3 {
|
1004
|
-
width: 8px
|
1024
|
+
width: 8px;
|
1005
1025
|
}
|
1006
1026
|
.w-6 {
|
1007
|
-
width: 24px
|
1027
|
+
width: 24px;
|
1008
1028
|
}
|
1009
1029
|
.w-\[56px\] {
|
1010
|
-
width: 56px
|
1030
|
+
width: 56px;
|
1011
1031
|
}
|
1012
1032
|
.min-w-\[280px\] {
|
1013
|
-
min-width: 280px
|
1033
|
+
min-width: 280px;
|
1014
1034
|
}
|
1015
1035
|
.min-w-full {
|
1016
|
-
min-width: 100
|
1036
|
+
min-width: 100%;
|
1017
1037
|
}
|
1018
1038
|
.min-w-0 {
|
1019
|
-
min-width: 0px
|
1039
|
+
min-width: 0px;
|
1020
1040
|
}
|
1021
1041
|
.max-w-\[600px\] {
|
1022
|
-
max-width: 600px
|
1042
|
+
max-width: 600px;
|
1023
1043
|
}
|
1024
1044
|
.max-w-\[940px\] {
|
1025
|
-
max-width: 940px
|
1045
|
+
max-width: 940px;
|
1026
1046
|
}
|
1027
1047
|
.max-w-screen-xl {
|
1028
|
-
max-width: 1536px
|
1048
|
+
max-width: 1536px;
|
1029
1049
|
}
|
1030
1050
|
.max-w-screen-lg {
|
1031
|
-
max-width: 1312px
|
1051
|
+
max-width: 1312px;
|
1032
1052
|
}
|
1033
1053
|
.max-w-screen-md {
|
1034
|
-
max-width: 1056px
|
1054
|
+
max-width: 1056px;
|
1035
1055
|
}
|
1036
1056
|
.max-w-screen-sm {
|
1037
|
-
max-width: 672px
|
1057
|
+
max-width: 672px;
|
1038
1058
|
}
|
1039
1059
|
.max-w-screen-xs {
|
1040
|
-
max-width: 320px
|
1060
|
+
max-width: 320px;
|
1041
1061
|
}
|
1042
1062
|
.max-w-\[70px\] {
|
1043
|
-
max-width: 70px
|
1063
|
+
max-width: 70px;
|
1044
1064
|
}
|
1045
1065
|
.max-w-\[40px\] {
|
1046
|
-
max-width: 40px
|
1066
|
+
max-width: 40px;
|
1047
1067
|
}
|
1048
1068
|
.max-w-\[300px\] {
|
1049
|
-
max-width: 300px
|
1069
|
+
max-width: 300px;
|
1050
1070
|
}
|
1051
1071
|
.max-w-\[320px\] {
|
1052
|
-
max-width: 320px
|
1072
|
+
max-width: 320px;
|
1053
1073
|
}
|
1054
1074
|
.shrink {
|
1055
|
-
flex-shrink: 1
|
1075
|
+
flex-shrink: 1;
|
1056
1076
|
}
|
1057
1077
|
.flex-grow {
|
1058
|
-
flex-grow: 1
|
1078
|
+
flex-grow: 1;
|
1059
1079
|
}
|
1060
1080
|
.grow {
|
1061
|
-
flex-grow: 1
|
1081
|
+
flex-grow: 1;
|
1062
1082
|
}
|
1063
1083
|
.grow-0 {
|
1064
|
-
flex-grow: 0
|
1084
|
+
flex-grow: 0;
|
1065
1085
|
}
|
1066
1086
|
.table-auto {
|
1067
|
-
table-layout: auto
|
1087
|
+
table-layout: auto;
|
1068
1088
|
}
|
1069
1089
|
.table-fixed {
|
1070
|
-
table-layout: fixed
|
1090
|
+
table-layout: fixed;
|
1071
1091
|
}
|
1072
1092
|
.border-spacing-0 {
|
1073
|
-
--tw-border-spacing-x: 0
|
1074
|
-
--tw-border-spacing-y: 0
|
1075
|
-
border-spacing: var(--tw-border-spacing-x) var(--tw-border-spacing-y)
|
1093
|
+
--tw-border-spacing-x: 0;
|
1094
|
+
--tw-border-spacing-y: 0;
|
1095
|
+
border-spacing: var(--tw-border-spacing-x) var(--tw-border-spacing-y);
|
1076
1096
|
}
|
1077
1097
|
.origin-\[0\%_45\%\] {
|
1078
|
-
transform-origin: 0% 45
|
1098
|
+
transform-origin: 0% 45%;
|
1079
1099
|
}
|
1080
1100
|
.rotate-45 {
|
1081
|
-
--tw-rotate: 45deg
|
1082
|
-
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
|
1101
|
+
--tw-rotate: 45deg;
|
1102
|
+
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
1083
1103
|
}
|
1084
1104
|
.scale-\[0\.55\] {
|
1085
|
-
--tw-scale-x: 0.55
|
1086
|
-
--tw-scale-y: 0.55
|
1087
|
-
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
|
1105
|
+
--tw-scale-x: 0.55;
|
1106
|
+
--tw-scale-y: 0.55;
|
1107
|
+
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
1088
1108
|
}
|
1089
1109
|
.transform {
|
1090
|
-
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
|
1110
|
+
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
1091
1111
|
}
|
1092
1112
|
@keyframes pulse {
|
1093
1113
|
50% {
|
@@ -1095,1398 +1115,1398 @@ input[type='number'].no-arrows {
|
|
1095
1115
|
}
|
1096
1116
|
}
|
1097
1117
|
.animate-pulse {
|
1098
|
-
animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite
|
1118
|
+
animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
|
1099
1119
|
}
|
1100
1120
|
.cursor-default {
|
1101
|
-
cursor: default
|
1121
|
+
cursor: default;
|
1102
1122
|
}
|
1103
1123
|
.cursor-pointer {
|
1104
|
-
cursor: pointer
|
1124
|
+
cursor: pointer;
|
1105
1125
|
}
|
1106
1126
|
.cursor-not-allowed {
|
1107
|
-
cursor: not-allowed
|
1127
|
+
cursor: not-allowed;
|
1108
1128
|
}
|
1109
1129
|
.resize-none {
|
1110
|
-
resize: none
|
1130
|
+
resize: none;
|
1111
1131
|
}
|
1112
1132
|
.resize {
|
1113
|
-
resize: both
|
1133
|
+
resize: both;
|
1114
1134
|
}
|
1115
1135
|
.snap-x {
|
1116
|
-
scroll-snap-type: x var(--tw-scroll-snap-strictness)
|
1136
|
+
scroll-snap-type: x var(--tw-scroll-snap-strictness);
|
1117
1137
|
}
|
1118
1138
|
.snap-mandatory {
|
1119
|
-
--tw-scroll-snap-strictness: mandatory
|
1139
|
+
--tw-scroll-snap-strictness: mandatory;
|
1120
1140
|
}
|
1121
1141
|
.snap-start {
|
1122
|
-
scroll-snap-align: start
|
1142
|
+
scroll-snap-align: start;
|
1123
1143
|
}
|
1124
1144
|
.appearance-none {
|
1125
|
-
-webkit-appearance: none
|
1126
|
-
-moz-appearance: none
|
1127
|
-
appearance: none
|
1145
|
+
-webkit-appearance: none;
|
1146
|
+
-moz-appearance: none;
|
1147
|
+
appearance: none;
|
1128
1148
|
}
|
1129
1149
|
.auto-cols-fr {
|
1130
|
-
grid-auto-columns: minmax(0, 1fr)
|
1150
|
+
grid-auto-columns: minmax(0, 1fr);
|
1131
1151
|
}
|
1132
1152
|
.grid-flow-col {
|
1133
|
-
grid-auto-flow: column
|
1153
|
+
grid-auto-flow: column;
|
1134
1154
|
}
|
1135
1155
|
.grid-cols-\[auto_1fr_auto\] {
|
1136
|
-
grid-template-columns: auto 1fr auto
|
1156
|
+
grid-template-columns: auto 1fr auto;
|
1137
1157
|
}
|
1138
1158
|
.grid-cols-1 {
|
1139
|
-
grid-template-columns: repeat(1, minmax(0, 1fr))
|
1159
|
+
grid-template-columns: repeat(1, minmax(0, 1fr));
|
1140
1160
|
}
|
1141
1161
|
.grid-cols-2 {
|
1142
|
-
grid-template-columns: repeat(2, minmax(0, 1fr))
|
1162
|
+
grid-template-columns: repeat(2, minmax(0, 1fr));
|
1143
1163
|
}
|
1144
1164
|
.grid-cols-3 {
|
1145
|
-
grid-template-columns: repeat(3, minmax(0, 1fr))
|
1165
|
+
grid-template-columns: repeat(3, minmax(0, 1fr));
|
1146
1166
|
}
|
1147
1167
|
.grid-cols-\[16px_1fr\] {
|
1148
|
-
grid-template-columns: 16px 1fr
|
1168
|
+
grid-template-columns: 16px 1fr;
|
1149
1169
|
}
|
1150
1170
|
.grid-cols-\[auto_1fr\] {
|
1151
|
-
grid-template-columns: auto 1fr
|
1171
|
+
grid-template-columns: auto 1fr;
|
1152
1172
|
}
|
1153
1173
|
.grid-cols-\[200px_1fr_200px\] {
|
1154
|
-
grid-template-columns: 200px 1fr 200px
|
1174
|
+
grid-template-columns: 200px 1fr 200px;
|
1155
1175
|
}
|
1156
1176
|
.flex-row {
|
1157
|
-
flex-direction: row
|
1177
|
+
flex-direction: row;
|
1158
1178
|
}
|
1159
1179
|
.flex-row-reverse {
|
1160
|
-
flex-direction: row-reverse
|
1180
|
+
flex-direction: row-reverse;
|
1161
1181
|
}
|
1162
1182
|
.flex-col {
|
1163
|
-
flex-direction: column
|
1183
|
+
flex-direction: column;
|
1164
1184
|
}
|
1165
1185
|
.flex-wrap {
|
1166
|
-
flex-wrap: wrap
|
1186
|
+
flex-wrap: wrap;
|
1167
1187
|
}
|
1168
1188
|
.flex-nowrap {
|
1169
|
-
flex-wrap: nowrap
|
1189
|
+
flex-wrap: nowrap;
|
1170
1190
|
}
|
1171
1191
|
.items-center {
|
1172
|
-
align-items: center
|
1192
|
+
align-items: center;
|
1173
1193
|
}
|
1174
1194
|
.items-stretch {
|
1175
|
-
align-items: stretch
|
1195
|
+
align-items: stretch;
|
1176
1196
|
}
|
1177
1197
|
.justify-start {
|
1178
|
-
justify-content: flex-start
|
1198
|
+
justify-content: flex-start;
|
1179
1199
|
}
|
1180
1200
|
.justify-end {
|
1181
|
-
justify-content: flex-end
|
1201
|
+
justify-content: flex-end;
|
1182
1202
|
}
|
1183
1203
|
.justify-center {
|
1184
|
-
justify-content: center
|
1204
|
+
justify-content: center;
|
1185
1205
|
}
|
1186
1206
|
.justify-between {
|
1187
|
-
justify-content: space-between
|
1207
|
+
justify-content: space-between;
|
1188
1208
|
}
|
1189
1209
|
.gap-4 {
|
1190
|
-
grid-gap: 12px
|
1191
|
-
gap: 12px
|
1210
|
+
grid-gap: 12px;
|
1211
|
+
gap: 12px;
|
1192
1212
|
}
|
1193
1213
|
.gap-7 {
|
1194
|
-
grid-gap: 32px
|
1195
|
-
gap: 32px
|
1214
|
+
grid-gap: 32px;
|
1215
|
+
gap: 32px;
|
1196
1216
|
}
|
1197
1217
|
.gap-5 {
|
1198
|
-
grid-gap: 16px
|
1199
|
-
gap: 16px
|
1218
|
+
grid-gap: 16px;
|
1219
|
+
gap: 16px;
|
1200
1220
|
}
|
1201
1221
|
.gap-3 {
|
1202
|
-
grid-gap: 8px
|
1203
|
-
gap: 8px
|
1222
|
+
grid-gap: 8px;
|
1223
|
+
gap: 8px;
|
1204
1224
|
}
|
1205
1225
|
.gap-2 {
|
1206
|
-
grid-gap: 4px
|
1207
|
-
gap: 4px
|
1226
|
+
grid-gap: 4px;
|
1227
|
+
gap: 4px;
|
1208
1228
|
}
|
1209
1229
|
.gap-8 {
|
1210
|
-
grid-gap: 40px
|
1211
|
-
gap: 40px
|
1230
|
+
grid-gap: 40px;
|
1231
|
+
gap: 40px;
|
1212
1232
|
}
|
1213
1233
|
.gap-x-3 {
|
1214
|
-
grid-column-gap: 8px
|
1215
|
-
-moz-column-gap: 8px
|
1216
|
-
column-gap: 8px
|
1234
|
+
grid-column-gap: 8px;
|
1235
|
+
-moz-column-gap: 8px;
|
1236
|
+
column-gap: 8px;
|
1217
1237
|
}
|
1218
1238
|
.gap-y-2 {
|
1219
|
-
grid-row-gap: 4px
|
1220
|
-
row-gap: 4px
|
1239
|
+
grid-row-gap: 4px;
|
1240
|
+
row-gap: 4px;
|
1221
1241
|
}
|
1222
1242
|
.gap-x-2 {
|
1223
|
-
grid-column-gap: 4px
|
1224
|
-
-moz-column-gap: 4px
|
1225
|
-
column-gap: 4px
|
1243
|
+
grid-column-gap: 4px;
|
1244
|
+
-moz-column-gap: 4px;
|
1245
|
+
column-gap: 4px;
|
1226
1246
|
}
|
1227
1247
|
.gap-x-4 {
|
1228
|
-
grid-column-gap: 12px
|
1229
|
-
-moz-column-gap: 12px
|
1230
|
-
column-gap: 12px
|
1248
|
+
grid-column-gap: 12px;
|
1249
|
+
-moz-column-gap: 12px;
|
1250
|
+
column-gap: 12px;
|
1231
1251
|
}
|
1232
1252
|
.self-start {
|
1233
|
-
align-self: flex-start
|
1253
|
+
align-self: flex-start;
|
1234
1254
|
}
|
1235
1255
|
.self-center {
|
1236
|
-
align-self: center
|
1256
|
+
align-self: center;
|
1237
1257
|
}
|
1238
1258
|
.justify-self-center {
|
1239
|
-
justify-self: center
|
1259
|
+
justify-self: center;
|
1240
1260
|
}
|
1241
1261
|
.overflow-hidden {
|
1242
|
-
overflow: hidden
|
1262
|
+
overflow: hidden;
|
1243
1263
|
}
|
1244
1264
|
.overflow-y-auto {
|
1245
|
-
overflow-y: auto
|
1265
|
+
overflow-y: auto;
|
1246
1266
|
}
|
1247
1267
|
.overflow-x-hidden {
|
1248
|
-
overflow-x: hidden
|
1268
|
+
overflow-x: hidden;
|
1249
1269
|
}
|
1250
1270
|
.overflow-x-scroll {
|
1251
|
-
overflow-x: scroll
|
1271
|
+
overflow-x: scroll;
|
1252
1272
|
}
|
1253
1273
|
.scroll-smooth {
|
1254
|
-
scroll-behavior: smooth
|
1274
|
+
scroll-behavior: smooth;
|
1255
1275
|
}
|
1256
1276
|
.whitespace-nowrap {
|
1257
|
-
white-space: nowrap
|
1277
|
+
white-space: nowrap;
|
1258
1278
|
}
|
1259
1279
|
.whitespace-pre {
|
1260
|
-
white-space: pre
|
1280
|
+
white-space: pre;
|
1261
1281
|
}
|
1262
1282
|
.break-words {
|
1263
|
-
word-wrap: break-word
|
1283
|
+
word-wrap: break-word;
|
1264
1284
|
}
|
1265
1285
|
.break-all {
|
1266
|
-
word-break: break-all
|
1286
|
+
word-break: break-all;
|
1267
1287
|
}
|
1268
1288
|
.rounded-sm {
|
1269
|
-
border-radius: 0.125rem
|
1289
|
+
border-radius: 0.125rem;
|
1270
1290
|
}
|
1271
1291
|
.rounded-full {
|
1272
|
-
border-radius: 9999px
|
1292
|
+
border-radius: 9999px;
|
1273
1293
|
}
|
1274
1294
|
.rounded {
|
1275
|
-
border-radius: 4px
|
1295
|
+
border-radius: 4px;
|
1276
1296
|
}
|
1277
1297
|
.rounded-\[2px\] {
|
1278
|
-
border-radius: 2px
|
1298
|
+
border-radius: 2px;
|
1279
1299
|
}
|
1280
1300
|
.border {
|
1281
|
-
border-width: 1px
|
1301
|
+
border-width: 1px;
|
1282
1302
|
}
|
1283
1303
|
.border-\[1px\] {
|
1284
|
-
border-width: 1px
|
1304
|
+
border-width: 1px;
|
1285
1305
|
}
|
1286
1306
|
.border-0 {
|
1287
|
-
border-width: 0px
|
1307
|
+
border-width: 0px;
|
1288
1308
|
}
|
1289
1309
|
.border-2 {
|
1290
|
-
border-width: 2px
|
1310
|
+
border-width: 2px;
|
1291
1311
|
}
|
1292
1312
|
.border-b-\[1px\] {
|
1293
|
-
border-bottom-width: 1px
|
1313
|
+
border-bottom-width: 1px;
|
1294
1314
|
}
|
1295
1315
|
.border-b {
|
1296
|
-
border-bottom-width: 1px
|
1316
|
+
border-bottom-width: 1px;
|
1297
1317
|
}
|
1298
1318
|
.border-b-2 {
|
1299
|
-
border-bottom-width: 2px
|
1319
|
+
border-bottom-width: 2px;
|
1300
1320
|
}
|
1301
1321
|
.border-solid {
|
1302
|
-
border-style: solid
|
1322
|
+
border-style: solid;
|
1303
1323
|
}
|
1304
1324
|
.border-dashed {
|
1305
|
-
border-style: dashed
|
1325
|
+
border-style: dashed;
|
1306
1326
|
}
|
1307
1327
|
.border-none {
|
1308
|
-
border-style: none
|
1328
|
+
border-style: none;
|
1309
1329
|
}
|
1310
1330
|
.border-error-50 {
|
1311
|
-
--tw-border-opacity: 1
|
1312
|
-
border-color: rgb(230 39 40 / var(--tw-border-opacity))
|
1331
|
+
--tw-border-opacity: 1;
|
1332
|
+
border-color: rgb(230 39 40 / var(--tw-border-opacity));
|
1313
1333
|
}
|
1314
1334
|
.border-grey-20 {
|
1315
|
-
--tw-border-opacity: 1
|
1316
|
-
border-color: rgb(210 210 214 / var(--tw-border-opacity))
|
1335
|
+
--tw-border-opacity: 1;
|
1336
|
+
border-color: rgb(210 210 214 / var(--tw-border-opacity));
|
1317
1337
|
}
|
1318
1338
|
.border-info-70 {
|
1319
|
-
--tw-border-opacity: 1
|
1320
|
-
border-color: rgb(3 153 227 / var(--tw-border-opacity))
|
1339
|
+
--tw-border-opacity: 1;
|
1340
|
+
border-color: rgb(3 153 227 / var(--tw-border-opacity));
|
1321
1341
|
}
|
1322
1342
|
.border-grey-5 {
|
1323
|
-
--tw-border-opacity: 1
|
1324
|
-
border-color: rgb(237 237 240 / var(--tw-border-opacity))
|
1343
|
+
--tw-border-opacity: 1;
|
1344
|
+
border-color: rgb(237 237 240 / var(--tw-border-opacity));
|
1325
1345
|
}
|
1326
1346
|
.border-transparent {
|
1327
|
-
border-color: transparent
|
1347
|
+
border-color: transparent;
|
1328
1348
|
}
|
1329
1349
|
.border-grey-10 {
|
1330
|
-
--tw-border-opacity: 1
|
1331
|
-
border-color: rgb(225 225 227 / var(--tw-border-opacity))
|
1350
|
+
--tw-border-opacity: 1;
|
1351
|
+
border-color: rgb(225 225 227 / var(--tw-border-opacity));
|
1332
1352
|
}
|
1333
1353
|
.border-navyBlue-100 {
|
1334
|
-
--tw-border-opacity: 1
|
1335
|
-
border-color: rgb(48 55 94 / var(--tw-border-opacity))
|
1354
|
+
--tw-border-opacity: 1;
|
1355
|
+
border-color: rgb(48 55 94 / var(--tw-border-opacity));
|
1336
1356
|
}
|
1337
1357
|
.border-grey-50 {
|
1338
|
-
--tw-border-opacity: 1
|
1339
|
-
border-color: rgb(120 120 133 / var(--tw-border-opacity))
|
1358
|
+
--tw-border-opacity: 1;
|
1359
|
+
border-color: rgb(120 120 133 / var(--tw-border-opacity));
|
1340
1360
|
}
|
1341
1361
|
.border-grey-90 {
|
1342
|
-
--tw-border-opacity: 1
|
1343
|
-
border-color: rgb(41 42 49 / var(--tw-border-opacity))
|
1362
|
+
--tw-border-opacity: 1;
|
1363
|
+
border-color: rgb(41 42 49 / var(--tw-border-opacity));
|
1344
1364
|
}
|
1345
1365
|
.border-success-70 {
|
1346
|
-
--tw-border-opacity: 1
|
1347
|
-
border-color: rgb(0 179 0 / var(--tw-border-opacity))
|
1366
|
+
--tw-border-opacity: 1;
|
1367
|
+
border-color: rgb(0 179 0 / var(--tw-border-opacity));
|
1348
1368
|
}
|
1349
1369
|
.border-grey-40 {
|
1350
|
-
--tw-border-opacity: 1
|
1351
|
-
border-color: rgb(150 150 160 / var(--tw-border-opacity))
|
1370
|
+
--tw-border-opacity: 1;
|
1371
|
+
border-color: rgb(150 150 160 / var(--tw-border-opacity));
|
1352
1372
|
}
|
1353
1373
|
.border-current {
|
1354
|
-
border-color: currentColor
|
1374
|
+
border-color: currentColor;
|
1355
1375
|
}
|
1356
1376
|
.border-grey-100 {
|
1357
|
-
--tw-border-opacity: 1
|
1358
|
-
border-color: rgb(25 25 29 / var(--tw-border-opacity))
|
1377
|
+
--tw-border-opacity: 1;
|
1378
|
+
border-color: rgb(25 25 29 / var(--tw-border-opacity));
|
1359
1379
|
}
|
1360
1380
|
.border-primary-80 {
|
1361
|
-
--tw-border-opacity: 1
|
1362
|
-
border-color: rgb(228 26 74 / var(--tw-border-opacity))
|
1381
|
+
--tw-border-opacity: 1;
|
1382
|
+
border-color: rgb(228 26 74 / var(--tw-border-opacity));
|
1363
1383
|
}
|
1364
1384
|
.bg-grey-10 {
|
1365
|
-
--tw-bg-opacity: 1
|
1366
|
-
background-color: rgb(225 225 227 / var(--tw-bg-opacity))
|
1385
|
+
--tw-bg-opacity: 1;
|
1386
|
+
background-color: rgb(225 225 227 / var(--tw-bg-opacity));
|
1367
1387
|
}
|
1368
1388
|
.bg-error-5 {
|
1369
|
-
--tw-bg-opacity: 1
|
1370
|
-
background-color: rgb(254 232 231 / var(--tw-bg-opacity))
|
1389
|
+
--tw-bg-opacity: 1;
|
1390
|
+
background-color: rgb(254 232 231 / var(--tw-bg-opacity));
|
1371
1391
|
}
|
1372
1392
|
.bg-info-5 {
|
1373
|
-
--tw-bg-opacity: 1
|
1374
|
-
background-color: rgb(239 250 255 / var(--tw-bg-opacity))
|
1393
|
+
--tw-bg-opacity: 1;
|
1394
|
+
background-color: rgb(239 250 255 / var(--tw-bg-opacity));
|
1375
1395
|
}
|
1376
1396
|
.bg-success-5 {
|
1377
|
-
--tw-bg-opacity: 1
|
1378
|
-
background-color: rgb(236 247 237 / var(--tw-bg-opacity))
|
1397
|
+
--tw-bg-opacity: 1;
|
1398
|
+
background-color: rgb(236 247 237 / var(--tw-bg-opacity));
|
1379
1399
|
}
|
1380
1400
|
.bg-warning-5 {
|
1381
|
-
--tw-bg-opacity: 1
|
1382
|
-
background-color: rgb(255 248 234 / var(--tw-bg-opacity))
|
1401
|
+
--tw-bg-opacity: 1;
|
1402
|
+
background-color: rgb(255 248 234 / var(--tw-bg-opacity));
|
1383
1403
|
}
|
1384
1404
|
.bg-grey-0 {
|
1385
|
-
--tw-bg-opacity: 1
|
1386
|
-
background-color: rgb(247 247 250 / var(--tw-bg-opacity))
|
1405
|
+
--tw-bg-opacity: 1;
|
1406
|
+
background-color: rgb(247 247 250 / var(--tw-bg-opacity));
|
1387
1407
|
}
|
1388
1408
|
.bg-white {
|
1389
|
-
--tw-bg-opacity: 1
|
1390
|
-
background-color: rgb(255 255 255 / var(--tw-bg-opacity))
|
1409
|
+
--tw-bg-opacity: 1;
|
1410
|
+
background-color: rgb(255 255 255 / var(--tw-bg-opacity));
|
1391
1411
|
}
|
1392
1412
|
.bg-navyBlue-100 {
|
1393
|
-
--tw-bg-opacity: 1
|
1394
|
-
background-color: rgb(48 55 94 / var(--tw-bg-opacity))
|
1413
|
+
--tw-bg-opacity: 1;
|
1414
|
+
background-color: rgb(48 55 94 / var(--tw-bg-opacity));
|
1395
1415
|
}
|
1396
1416
|
.bg-grey-5 {
|
1397
|
-
--tw-bg-opacity: 1
|
1398
|
-
background-color: rgb(237 237 240 / var(--tw-bg-opacity))
|
1417
|
+
--tw-bg-opacity: 1;
|
1418
|
+
background-color: rgb(237 237 240 / var(--tw-bg-opacity));
|
1399
1419
|
}
|
1400
1420
|
.bg-info-50 {
|
1401
|
-
--tw-bg-opacity: 1
|
1402
|
-
background-color: rgb(40 180 244 / var(--tw-bg-opacity))
|
1421
|
+
--tw-bg-opacity: 1;
|
1422
|
+
background-color: rgb(40 180 244 / var(--tw-bg-opacity));
|
1403
1423
|
}
|
1404
1424
|
.bg-warning-70 {
|
1405
|
-
--tw-bg-opacity: 1
|
1406
|
-
background-color: rgb(255 179 0 / var(--tw-bg-opacity))
|
1425
|
+
--tw-bg-opacity: 1;
|
1426
|
+
background-color: rgb(255 179 0 / var(--tw-bg-opacity));
|
1407
1427
|
}
|
1408
1428
|
.bg-success-70 {
|
1409
|
-
--tw-bg-opacity: 1
|
1410
|
-
background-color: rgb(0 179 0 / var(--tw-bg-opacity))
|
1429
|
+
--tw-bg-opacity: 1;
|
1430
|
+
background-color: rgb(0 179 0 / var(--tw-bg-opacity));
|
1411
1431
|
}
|
1412
1432
|
.bg-error-70 {
|
1413
|
-
--tw-bg-opacity: 1
|
1414
|
-
background-color: rgb(216 0 5 / var(--tw-bg-opacity))
|
1433
|
+
--tw-bg-opacity: 1;
|
1434
|
+
background-color: rgb(216 0 5 / var(--tw-bg-opacity));
|
1415
1435
|
}
|
1416
1436
|
.bg-grey-20 {
|
1417
|
-
--tw-bg-opacity: 1
|
1418
|
-
background-color: rgb(210 210 214 / var(--tw-bg-opacity))
|
1437
|
+
--tw-bg-opacity: 1;
|
1438
|
+
background-color: rgb(210 210 214 / var(--tw-bg-opacity));
|
1419
1439
|
}
|
1420
1440
|
.bg-grey-90 {
|
1421
|
-
--tw-bg-opacity: 1
|
1422
|
-
background-color: rgb(41 42 49 / var(--tw-bg-opacity))
|
1441
|
+
--tw-bg-opacity: 1;
|
1442
|
+
background-color: rgb(41 42 49 / var(--tw-bg-opacity));
|
1423
1443
|
}
|
1424
1444
|
.bg-grey-30 {
|
1425
|
-
--tw-bg-opacity: 1
|
1426
|
-
background-color: rgb(180 180 187 / var(--tw-bg-opacity))
|
1445
|
+
--tw-bg-opacity: 1;
|
1446
|
+
background-color: rgb(180 180 187 / var(--tw-bg-opacity));
|
1427
1447
|
}
|
1428
1448
|
.bg-current {
|
1429
|
-
background-color: currentColor
|
1449
|
+
background-color: currentColor;
|
1430
1450
|
}
|
1431
1451
|
.bg-primary-80 {
|
1432
|
-
--tw-bg-opacity: 1
|
1433
|
-
background-color: rgb(228 26 74 / var(--tw-bg-opacity))
|
1452
|
+
--tw-bg-opacity: 1;
|
1453
|
+
background-color: rgb(228 26 74 / var(--tw-bg-opacity));
|
1434
1454
|
}
|
1435
1455
|
.bg-transparent {
|
1436
|
-
background-color: transparent
|
1456
|
+
background-color: transparent;
|
1437
1457
|
}
|
1438
1458
|
.bg-secondary-5 {
|
1439
|
-
--tw-bg-opacity: 1
|
1440
|
-
background-color: rgb(255 243 232 / var(--tw-bg-opacity))
|
1459
|
+
--tw-bg-opacity: 1;
|
1460
|
+
background-color: rgb(255 243 232 / var(--tw-bg-opacity));
|
1441
1461
|
}
|
1442
1462
|
.bg-error-0 {
|
1443
|
-
--tw-bg-opacity: 1
|
1444
|
-
background-color: rgb(254 242 241 / var(--tw-bg-opacity))
|
1463
|
+
--tw-bg-opacity: 1;
|
1464
|
+
background-color: rgb(254 242 241 / var(--tw-bg-opacity));
|
1445
1465
|
}
|
1446
1466
|
.bg-primary-70 {
|
1447
|
-
--tw-bg-opacity: 1
|
1448
|
-
background-color: rgb(255 53 84 / var(--tw-bg-opacity))
|
1467
|
+
--tw-bg-opacity: 1;
|
1468
|
+
background-color: rgb(255 53 84 / var(--tw-bg-opacity));
|
1449
1469
|
}
|
1450
1470
|
.bg-opacity-40 {
|
1451
|
-
--tw-bg-opacity: 0.4
|
1471
|
+
--tw-bg-opacity: 0.4;
|
1452
1472
|
}
|
1453
1473
|
.bg-gradient-to-r {
|
1454
|
-
background-image: linear-gradient(to right, var(--tw-gradient-stops))
|
1474
|
+
background-image: linear-gradient(to right, var(--tw-gradient-stops));
|
1455
1475
|
}
|
1456
1476
|
.bg-gradient-to-l {
|
1457
|
-
background-image: linear-gradient(to left, var(--tw-gradient-stops))
|
1477
|
+
background-image: linear-gradient(to left, var(--tw-gradient-stops));
|
1458
1478
|
}
|
1459
1479
|
.from-white {
|
1460
|
-
--tw-gradient-from: white
|
1461
|
-
--tw-gradient-to: rgba(255, 255, 255, 0)
|
1462
|
-
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
|
1480
|
+
--tw-gradient-from: white;
|
1481
|
+
--tw-gradient-to: rgba(255, 255, 255, 0);
|
1482
|
+
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
|
1463
1483
|
}
|
1464
1484
|
.via-white {
|
1465
|
-
--tw-gradient-to: rgba(255, 255, 255, 0)
|
1466
|
-
--tw-gradient-stops: var(--tw-gradient-from), white, var(--tw-gradient-to)
|
1485
|
+
--tw-gradient-to: rgba(255, 255, 255, 0);
|
1486
|
+
--tw-gradient-stops: var(--tw-gradient-from), white, var(--tw-gradient-to);
|
1467
1487
|
}
|
1468
1488
|
.bg-cover {
|
1469
|
-
background-size: cover
|
1489
|
+
background-size: cover;
|
1470
1490
|
}
|
1471
1491
|
.stroke-grey-30 {
|
1472
|
-
stroke: #b4b4bb
|
1492
|
+
stroke: #b4b4bb;
|
1473
1493
|
}
|
1474
1494
|
.object-cover {
|
1475
|
-
-o-object-fit: cover
|
1476
|
-
object-fit: cover
|
1495
|
+
-o-object-fit: cover;
|
1496
|
+
object-fit: cover;
|
1477
1497
|
}
|
1478
1498
|
.p-4 {
|
1479
|
-
padding: 12px
|
1499
|
+
padding: 12px;
|
1480
1500
|
}
|
1481
1501
|
.p-5 {
|
1482
|
-
padding: 16px
|
1502
|
+
padding: 16px;
|
1483
1503
|
}
|
1484
1504
|
.p-6 {
|
1485
|
-
padding: 24px
|
1505
|
+
padding: 24px;
|
1486
1506
|
}
|
1487
1507
|
.p-\[2px\] {
|
1488
|
-
padding: 2px
|
1508
|
+
padding: 2px;
|
1489
1509
|
}
|
1490
1510
|
.p-3 {
|
1491
|
-
padding: 8px
|
1511
|
+
padding: 8px;
|
1492
1512
|
}
|
1493
1513
|
.p-\[3px\] {
|
1494
|
-
padding: 3px
|
1514
|
+
padding: 3px;
|
1495
1515
|
}
|
1496
1516
|
.p-2 {
|
1497
|
-
padding: 4px
|
1517
|
+
padding: 4px;
|
1498
1518
|
}
|
1499
1519
|
.px-3 {
|
1500
|
-
padding-left: 8px
|
1501
|
-
padding-right: 8px
|
1520
|
+
padding-left: 8px;
|
1521
|
+
padding-right: 8px;
|
1502
1522
|
}
|
1503
1523
|
.py-3 {
|
1504
|
-
padding-top: 8px
|
1505
|
-
padding-bottom: 8px
|
1524
|
+
padding-top: 8px;
|
1525
|
+
padding-bottom: 8px;
|
1506
1526
|
}
|
1507
1527
|
.py-2 {
|
1508
|
-
padding-top: 4px
|
1509
|
-
padding-bottom: 4px
|
1528
|
+
padding-top: 4px;
|
1529
|
+
padding-bottom: 4px;
|
1510
1530
|
}
|
1511
1531
|
.py-1 {
|
1512
|
-
padding-top: 2px
|
1513
|
-
padding-bottom: 2px
|
1532
|
+
padding-top: 2px;
|
1533
|
+
padding-bottom: 2px;
|
1514
1534
|
}
|
1515
1535
|
.px-2 {
|
1516
|
-
padding-left: 4px
|
1517
|
-
padding-right: 4px
|
1536
|
+
padding-left: 4px;
|
1537
|
+
padding-right: 4px;
|
1518
1538
|
}
|
1519
1539
|
.py-7 {
|
1520
|
-
padding-top: 32px
|
1521
|
-
padding-bottom: 32px
|
1540
|
+
padding-top: 32px;
|
1541
|
+
padding-bottom: 32px;
|
1522
1542
|
}
|
1523
1543
|
.px-7 {
|
1524
|
-
padding-left: 32px
|
1525
|
-
padding-right: 32px
|
1544
|
+
padding-left: 32px;
|
1545
|
+
padding-right: 32px;
|
1526
1546
|
}
|
1527
1547
|
.py-6 {
|
1528
|
-
padding-top: 24px
|
1529
|
-
padding-bottom: 24px
|
1548
|
+
padding-top: 24px;
|
1549
|
+
padding-bottom: 24px;
|
1530
1550
|
}
|
1531
1551
|
.px-5 {
|
1532
|
-
padding-left: 16px
|
1533
|
-
padding-right: 16px
|
1552
|
+
padding-left: 16px;
|
1553
|
+
padding-right: 16px;
|
1534
1554
|
}
|
1535
1555
|
.px-6 {
|
1536
|
-
padding-left: 24px
|
1537
|
-
padding-right: 24px
|
1556
|
+
padding-left: 24px;
|
1557
|
+
padding-right: 24px;
|
1538
1558
|
}
|
1539
1559
|
.py-5 {
|
1540
|
-
padding-top: 16px
|
1541
|
-
padding-bottom: 16px
|
1560
|
+
padding-top: 16px;
|
1561
|
+
padding-bottom: 16px;
|
1542
1562
|
}
|
1543
1563
|
.py-\[6px\] {
|
1544
|
-
padding-top: 6px
|
1545
|
-
padding-bottom: 6px
|
1564
|
+
padding-top: 6px;
|
1565
|
+
padding-bottom: 6px;
|
1546
1566
|
}
|
1547
1567
|
.px-\[1px\] {
|
1548
|
-
padding-left: 1px
|
1549
|
-
padding-right: 1px
|
1568
|
+
padding-left: 1px;
|
1569
|
+
padding-right: 1px;
|
1550
1570
|
}
|
1551
1571
|
.px-\[14px\] {
|
1552
|
-
padding-left: 14px
|
1553
|
-
padding-right: 14px
|
1572
|
+
padding-left: 14px;
|
1573
|
+
padding-right: 14px;
|
1554
1574
|
}
|
1555
1575
|
.px-\[20px\] {
|
1556
|
-
padding-left: 20px
|
1557
|
-
padding-right: 20px
|
1576
|
+
padding-left: 20px;
|
1577
|
+
padding-right: 20px;
|
1558
1578
|
}
|
1559
1579
|
.px-4 {
|
1560
|
-
padding-left: 12px
|
1561
|
-
padding-right: 12px
|
1580
|
+
padding-left: 12px;
|
1581
|
+
padding-right: 12px;
|
1562
1582
|
}
|
1563
1583
|
.py-\[14px\] {
|
1564
|
-
padding-top: 14px
|
1565
|
-
padding-bottom: 14px
|
1584
|
+
padding-top: 14px;
|
1585
|
+
padding-bottom: 14px;
|
1566
1586
|
}
|
1567
1587
|
.px-1 {
|
1568
|
-
padding-left: 2px
|
1569
|
-
padding-right: 2px
|
1588
|
+
padding-left: 2px;
|
1589
|
+
padding-right: 2px;
|
1570
1590
|
}
|
1571
1591
|
.px-\[4px\] {
|
1572
|
-
padding-left: 4px
|
1573
|
-
padding-right: 4px
|
1592
|
+
padding-left: 4px;
|
1593
|
+
padding-right: 4px;
|
1574
1594
|
}
|
1575
1595
|
.py-4 {
|
1576
|
-
padding-top: 12px
|
1577
|
-
padding-bottom: 12px
|
1596
|
+
padding-top: 12px;
|
1597
|
+
padding-bottom: 12px;
|
1578
1598
|
}
|
1579
1599
|
.px-0 {
|
1580
|
-
padding-left: 0
|
1581
|
-
padding-right: 0
|
1600
|
+
padding-left: 0;
|
1601
|
+
padding-right: 0;
|
1582
1602
|
}
|
1583
1603
|
.pt-3 {
|
1584
|
-
padding-top: 8px
|
1604
|
+
padding-top: 8px;
|
1585
1605
|
}
|
1586
1606
|
.pb-6 {
|
1587
|
-
padding-bottom: 24px
|
1607
|
+
padding-bottom: 24px;
|
1588
1608
|
}
|
1589
1609
|
.pl-7 {
|
1590
|
-
padding-left: 32px
|
1610
|
+
padding-left: 32px;
|
1591
1611
|
}
|
1592
1612
|
.pb-3 {
|
1593
|
-
padding-bottom: 8px
|
1613
|
+
padding-bottom: 8px;
|
1594
1614
|
}
|
1595
1615
|
.pr-4 {
|
1596
|
-
padding-right: 12px
|
1616
|
+
padding-right: 12px;
|
1597
1617
|
}
|
1598
1618
|
.pl-4 {
|
1599
|
-
padding-left: 12px
|
1619
|
+
padding-left: 12px;
|
1600
1620
|
}
|
1601
1621
|
.text-left {
|
1602
|
-
text-align: left
|
1622
|
+
text-align: left;
|
1603
1623
|
}
|
1604
1624
|
.text-center {
|
1605
|
-
text-align: center
|
1625
|
+
text-align: center;
|
1606
1626
|
}
|
1607
1627
|
.text-right {
|
1608
|
-
text-align: right
|
1628
|
+
text-align: right;
|
1609
1629
|
}
|
1610
1630
|
.align-middle {
|
1611
|
-
vertical-align: middle
|
1631
|
+
vertical-align: middle;
|
1612
1632
|
}
|
1613
1633
|
.text-\[9px\] {
|
1614
|
-
font-size: 9px
|
1634
|
+
font-size: 9px;
|
1615
1635
|
}
|
1616
1636
|
.text-\[8px\] {
|
1617
|
-
font-size: 8px
|
1637
|
+
font-size: 8px;
|
1618
1638
|
}
|
1619
1639
|
.font-normal {
|
1620
|
-
font-weight: 400
|
1640
|
+
font-weight: 400;
|
1621
1641
|
}
|
1622
1642
|
.uppercase {
|
1623
|
-
text-transform: uppercase
|
1643
|
+
text-transform: uppercase;
|
1624
1644
|
}
|
1625
1645
|
.capitalize {
|
1626
|
-
text-transform: capitalize
|
1646
|
+
text-transform: capitalize;
|
1627
1647
|
}
|
1628
1648
|
.italic {
|
1629
|
-
font-style: italic
|
1649
|
+
font-style: italic;
|
1630
1650
|
}
|
1631
1651
|
.leading-none {
|
1632
|
-
line-height: 1
|
1652
|
+
line-height: 1;
|
1633
1653
|
}
|
1634
1654
|
.leading-\[18px\] {
|
1635
|
-
line-height: 18px
|
1655
|
+
line-height: 18px;
|
1636
1656
|
}
|
1637
1657
|
.leading-\[0px\] {
|
1638
|
-
line-height: 0px
|
1658
|
+
line-height: 0px;
|
1639
1659
|
}
|
1640
1660
|
.text-error-100 {
|
1641
|
-
--tw-text-opacity: 1
|
1642
|
-
color: rgb(170 0 0 / var(--tw-text-opacity))
|
1661
|
+
--tw-text-opacity: 1;
|
1662
|
+
color: rgb(170 0 0 / var(--tw-text-opacity));
|
1643
1663
|
}
|
1644
1664
|
.text-error-90 {
|
1645
|
-
--tw-text-opacity: 1
|
1646
|
-
color: rgb(185 0 0 / var(--tw-text-opacity))
|
1665
|
+
--tw-text-opacity: 1;
|
1666
|
+
color: rgb(185 0 0 / var(--tw-text-opacity));
|
1647
1667
|
}
|
1648
1668
|
.text-error-80 {
|
1649
|
-
--tw-text-opacity: 1
|
1650
|
-
color: rgb(197 0 1 / var(--tw-text-opacity))
|
1669
|
+
--tw-text-opacity: 1;
|
1670
|
+
color: rgb(197 0 1 / var(--tw-text-opacity));
|
1651
1671
|
}
|
1652
1672
|
.text-error-70 {
|
1653
|
-
--tw-text-opacity: 1
|
1654
|
-
color: rgb(216 0 5 / var(--tw-text-opacity))
|
1673
|
+
--tw-text-opacity: 1;
|
1674
|
+
color: rgb(216 0 5 / var(--tw-text-opacity));
|
1655
1675
|
}
|
1656
1676
|
.text-error-60 {
|
1657
|
-
--tw-text-opacity: 1
|
1658
|
-
color: rgb(231 0 0 / var(--tw-text-opacity))
|
1677
|
+
--tw-text-opacity: 1;
|
1678
|
+
color: rgb(231 0 0 / var(--tw-text-opacity));
|
1659
1679
|
}
|
1660
1680
|
.text-error-50 {
|
1661
|
-
--tw-text-opacity: 1
|
1662
|
-
color: rgb(230 39 40 / var(--tw-text-opacity))
|
1681
|
+
--tw-text-opacity: 1;
|
1682
|
+
color: rgb(230 39 40 / var(--tw-text-opacity));
|
1663
1683
|
}
|
1664
1684
|
.text-error-40 {
|
1665
|
-
--tw-text-opacity: 1
|
1666
|
-
color: rgb(224 80 79 / var(--tw-text-opacity))
|
1685
|
+
--tw-text-opacity: 1;
|
1686
|
+
color: rgb(224 80 79 / var(--tw-text-opacity));
|
1667
1687
|
}
|
1668
1688
|
.text-error-30 {
|
1669
|
-
--tw-text-opacity: 1
|
1670
|
-
color: rgb(237 121 117 / var(--tw-text-opacity))
|
1689
|
+
--tw-text-opacity: 1;
|
1690
|
+
color: rgb(237 121 117 / var(--tw-text-opacity));
|
1671
1691
|
}
|
1672
1692
|
.text-error-20 {
|
1673
|
-
--tw-text-opacity: 1
|
1674
|
-
color: rgb(255 173 179 / var(--tw-text-opacity))
|
1693
|
+
--tw-text-opacity: 1;
|
1694
|
+
color: rgb(255 173 179 / var(--tw-text-opacity));
|
1675
1695
|
}
|
1676
1696
|
.text-error-10 {
|
1677
|
-
--tw-text-opacity: 1
|
1678
|
-
color: rgb(255 203 210 / var(--tw-text-opacity))
|
1697
|
+
--tw-text-opacity: 1;
|
1698
|
+
color: rgb(255 203 210 / var(--tw-text-opacity));
|
1679
1699
|
}
|
1680
1700
|
.text-error-5 {
|
1681
|
-
--tw-text-opacity: 1
|
1682
|
-
color: rgb(254 232 231 / var(--tw-text-opacity))
|
1701
|
+
--tw-text-opacity: 1;
|
1702
|
+
color: rgb(254 232 231 / var(--tw-text-opacity));
|
1683
1703
|
}
|
1684
1704
|
.text-error-0 {
|
1685
|
-
--tw-text-opacity: 1
|
1686
|
-
color: rgb(254 242 241 / var(--tw-text-opacity))
|
1705
|
+
--tw-text-opacity: 1;
|
1706
|
+
color: rgb(254 242 241 / var(--tw-text-opacity));
|
1687
1707
|
}
|
1688
1708
|
.text-warning-100 {
|
1689
|
-
--tw-text-opacity: 1
|
1690
|
-
color: rgb(254 109 0 / var(--tw-text-opacity))
|
1709
|
+
--tw-text-opacity: 1;
|
1710
|
+
color: rgb(254 109 0 / var(--tw-text-opacity));
|
1691
1711
|
}
|
1692
1712
|
.text-warning-90 {
|
1693
|
-
--tw-text-opacity: 1
|
1694
|
-
color: rgb(255 144 3 / var(--tw-text-opacity))
|
1713
|
+
--tw-text-opacity: 1;
|
1714
|
+
color: rgb(255 144 3 / var(--tw-text-opacity));
|
1695
1715
|
}
|
1696
1716
|
.text-warning-80 {
|
1697
|
-
--tw-text-opacity: 1
|
1698
|
-
color: rgb(253 159 0 / var(--tw-text-opacity))
|
1717
|
+
--tw-text-opacity: 1;
|
1718
|
+
color: rgb(253 159 0 / var(--tw-text-opacity));
|
1699
1719
|
}
|
1700
1720
|
.text-warning-70 {
|
1701
|
-
--tw-text-opacity: 1
|
1702
|
-
color: rgb(255 179 0 / var(--tw-text-opacity))
|
1721
|
+
--tw-text-opacity: 1;
|
1722
|
+
color: rgb(255 179 0 / var(--tw-text-opacity));
|
1703
1723
|
}
|
1704
1724
|
.text-warning-60 {
|
1705
|
-
--tw-text-opacity: 1
|
1706
|
-
color: rgb(255 193 7 / var(--tw-text-opacity))
|
1725
|
+
--tw-text-opacity: 1;
|
1726
|
+
color: rgb(255 193 7 / var(--tw-text-opacity));
|
1707
1727
|
}
|
1708
1728
|
.text-warning-50 {
|
1709
|
-
--tw-text-opacity: 1
|
1710
|
-
color: rgb(253 201 38 / var(--tw-text-opacity))
|
1729
|
+
--tw-text-opacity: 1;
|
1730
|
+
color: rgb(253 201 38 / var(--tw-text-opacity));
|
1711
1731
|
}
|
1712
1732
|
.text-warning-40 {
|
1713
|
-
--tw-text-opacity: 1
|
1714
|
-
color: rgb(253 212 77 / var(--tw-text-opacity))
|
1733
|
+
--tw-text-opacity: 1;
|
1734
|
+
color: rgb(253 212 77 / var(--tw-text-opacity));
|
1715
1735
|
}
|
1716
1736
|
.text-warning-30 {
|
1717
|
-
--tw-text-opacity: 1
|
1718
|
-
color: rgb(253 223 129 / var(--tw-text-opacity))
|
1737
|
+
--tw-text-opacity: 1;
|
1738
|
+
color: rgb(253 223 129 / var(--tw-text-opacity));
|
1719
1739
|
}
|
1720
1740
|
.text-warning-20 {
|
1721
|
-
--tw-text-opacity: 1
|
1722
|
-
color: rgb(254 235 178 / var(--tw-text-opacity))
|
1741
|
+
--tw-text-opacity: 1;
|
1742
|
+
color: rgb(254 235 178 / var(--tw-text-opacity));
|
1723
1743
|
}
|
1724
1744
|
.text-warning-10 {
|
1725
|
-
--tw-text-opacity: 1
|
1726
|
-
color: rgb(255 242 205 / var(--tw-text-opacity))
|
1745
|
+
--tw-text-opacity: 1;
|
1746
|
+
color: rgb(255 242 205 / var(--tw-text-opacity));
|
1727
1747
|
}
|
1728
1748
|
.text-warning-5 {
|
1729
|
-
--tw-text-opacity: 1
|
1730
|
-
color: rgb(255 248 234 / var(--tw-text-opacity))
|
1749
|
+
--tw-text-opacity: 1;
|
1750
|
+
color: rgb(255 248 234 / var(--tw-text-opacity));
|
1731
1751
|
}
|
1732
1752
|
.text-warning-0 {
|
1733
|
-
--tw-text-opacity: 1
|
1734
|
-
color: rgb(255 253 249 / var(--tw-text-opacity))
|
1753
|
+
--tw-text-opacity: 1;
|
1754
|
+
color: rgb(255 253 249 / var(--tw-text-opacity));
|
1735
1755
|
}
|
1736
1756
|
.text-success-100 {
|
1737
|
-
--tw-text-opacity: 1
|
1738
|
-
color: rgb(0 111 0 / var(--tw-text-opacity))
|
1757
|
+
--tw-text-opacity: 1;
|
1758
|
+
color: rgb(0 111 0 / var(--tw-text-opacity));
|
1739
1759
|
}
|
1740
1760
|
.text-success-90 {
|
1741
|
-
--tw-text-opacity: 1
|
1742
|
-
color: rgb(0 142 0 / var(--tw-text-opacity))
|
1761
|
+
--tw-text-opacity: 1;
|
1762
|
+
color: rgb(0 142 0 / var(--tw-text-opacity));
|
1743
1763
|
}
|
1744
1764
|
.text-success-80 {
|
1745
|
-
--tw-text-opacity: 1
|
1746
|
-
color: rgb(0 159 0 / var(--tw-text-opacity))
|
1765
|
+
--tw-text-opacity: 1;
|
1766
|
+
color: rgb(0 159 0 / var(--tw-text-opacity));
|
1747
1767
|
}
|
1748
1768
|
.text-success-70 {
|
1749
|
-
--tw-text-opacity: 1
|
1750
|
-
color: rgb(0 179 0 / var(--tw-text-opacity))
|
1769
|
+
--tw-text-opacity: 1;
|
1770
|
+
color: rgb(0 179 0 / var(--tw-text-opacity));
|
1751
1771
|
}
|
1752
1772
|
.text-success-60 {
|
1753
|
-
--tw-text-opacity: 1
|
1754
|
-
color: rgb(0 195 0 / var(--tw-text-opacity))
|
1773
|
+
--tw-text-opacity: 1;
|
1774
|
+
color: rgb(0 195 0 / var(--tw-text-opacity));
|
1755
1775
|
}
|
1756
1776
|
.text-success-50 {
|
1757
|
-
--tw-text-opacity: 1
|
1758
|
-
color: rgb(64 206 55 / var(--tw-text-opacity))
|
1777
|
+
--tw-text-opacity: 1;
|
1778
|
+
color: rgb(64 206 55 / var(--tw-text-opacity));
|
1759
1779
|
}
|
1760
1780
|
.text-success-40 {
|
1761
|
-
--tw-text-opacity: 1
|
1762
|
-
color: rgb(96 219 87 / var(--tw-text-opacity))
|
1781
|
+
--tw-text-opacity: 1;
|
1782
|
+
color: rgb(96 219 87 / var(--tw-text-opacity));
|
1763
1783
|
}
|
1764
1784
|
.text-success-30 {
|
1765
|
-
--tw-text-opacity: 1
|
1766
|
-
color: rgb(137 235 128 / var(--tw-text-opacity))
|
1785
|
+
--tw-text-opacity: 1;
|
1786
|
+
color: rgb(137 235 128 / var(--tw-text-opacity));
|
1767
1787
|
}
|
1768
1788
|
.text-success-20 {
|
1769
|
-
--tw-text-opacity: 1
|
1770
|
-
color: rgb(175 255 167 / var(--tw-text-opacity))
|
1789
|
+
--tw-text-opacity: 1;
|
1790
|
+
color: rgb(175 255 167 / var(--tw-text-opacity));
|
1771
1791
|
}
|
1772
1792
|
.text-success-10 {
|
1773
|
-
--tw-text-opacity: 1
|
1774
|
-
color: rgb(203 255 201 / var(--tw-text-opacity))
|
1793
|
+
--tw-text-opacity: 1;
|
1794
|
+
color: rgb(203 255 201 / var(--tw-text-opacity));
|
1775
1795
|
}
|
1776
1796
|
.text-success-5 {
|
1777
|
-
--tw-text-opacity: 1
|
1778
|
-
color: rgb(236 247 237 / var(--tw-text-opacity))
|
1797
|
+
--tw-text-opacity: 1;
|
1798
|
+
color: rgb(236 247 237 / var(--tw-text-opacity));
|
1779
1799
|
}
|
1780
1800
|
.text-success-0 {
|
1781
|
-
--tw-text-opacity: 1
|
1782
|
-
color: rgb(245 250 245 / var(--tw-text-opacity))
|
1801
|
+
--tw-text-opacity: 1;
|
1802
|
+
color: rgb(245 250 245 / var(--tw-text-opacity));
|
1783
1803
|
}
|
1784
1804
|
.text-info-100 {
|
1785
|
-
--tw-text-opacity: 1
|
1786
|
-
color: rgb(2 86 154 / var(--tw-text-opacity))
|
1805
|
+
--tw-text-opacity: 1;
|
1806
|
+
color: rgb(2 86 154 / var(--tw-text-opacity));
|
1787
1807
|
}
|
1788
1808
|
.text-info-90 {
|
1789
|
-
--tw-text-opacity: 1
|
1790
|
-
color: rgb(1 116 186 / var(--tw-text-opacity))
|
1809
|
+
--tw-text-opacity: 1;
|
1810
|
+
color: rgb(1 116 186 / var(--tw-text-opacity));
|
1791
1811
|
}
|
1792
1812
|
.text-info-80 {
|
1793
|
-
--tw-text-opacity: 1
|
1794
|
-
color: rgb(7 136 209 / var(--tw-text-opacity))
|
1813
|
+
--tw-text-opacity: 1;
|
1814
|
+
color: rgb(7 136 209 / var(--tw-text-opacity));
|
1795
1815
|
}
|
1796
1816
|
.text-info-70 {
|
1797
|
-
--tw-text-opacity: 1
|
1798
|
-
color: rgb(3 153 227 / var(--tw-text-opacity))
|
1817
|
+
--tw-text-opacity: 1;
|
1818
|
+
color: rgb(3 153 227 / var(--tw-text-opacity));
|
1799
1819
|
}
|
1800
1820
|
.text-info-60 {
|
1801
|
-
--tw-text-opacity: 1
|
1802
|
-
color: rgb(2 168 243 / var(--tw-text-opacity))
|
1821
|
+
--tw-text-opacity: 1;
|
1822
|
+
color: rgb(2 168 243 / var(--tw-text-opacity));
|
1803
1823
|
}
|
1804
1824
|
.text-info-50 {
|
1805
|
-
--tw-text-opacity: 1
|
1806
|
-
color: rgb(40 180 244 / var(--tw-text-opacity))
|
1825
|
+
--tw-text-opacity: 1;
|
1826
|
+
color: rgb(40 180 244 / var(--tw-text-opacity));
|
1807
1827
|
}
|
1808
1828
|
.text-info-40 {
|
1809
|
-
--tw-text-opacity: 1
|
1810
|
-
color: rgb(76 194 247 / var(--tw-text-opacity))
|
1829
|
+
--tw-text-opacity: 1;
|
1830
|
+
color: rgb(76 194 247 / var(--tw-text-opacity));
|
1811
1831
|
}
|
1812
1832
|
.text-info-30 {
|
1813
|
-
--tw-text-opacity: 1
|
1814
|
-
color: rgb(127 209 247 / var(--tw-text-opacity))
|
1833
|
+
--tw-text-opacity: 1;
|
1834
|
+
color: rgb(127 209 247 / var(--tw-text-opacity));
|
1815
1835
|
}
|
1816
1836
|
.text-info-20 {
|
1817
|
-
--tw-text-opacity: 1
|
1818
|
-
color: rgb(180 229 251 / var(--tw-text-opacity))
|
1837
|
+
--tw-text-opacity: 1;
|
1838
|
+
color: rgb(180 229 251 / var(--tw-text-opacity));
|
1819
1839
|
}
|
1820
1840
|
.text-info-10 {
|
1821
|
-
--tw-text-opacity: 1
|
1822
|
-
color: rgb(224 245 254 / var(--tw-text-opacity))
|
1841
|
+
--tw-text-opacity: 1;
|
1842
|
+
color: rgb(224 245 254 / var(--tw-text-opacity));
|
1823
1843
|
}
|
1824
1844
|
.text-info-5 {
|
1825
|
-
--tw-text-opacity: 1
|
1826
|
-
color: rgb(239 250 255 / var(--tw-text-opacity))
|
1845
|
+
--tw-text-opacity: 1;
|
1846
|
+
color: rgb(239 250 255 / var(--tw-text-opacity));
|
1827
1847
|
}
|
1828
1848
|
.text-info-0 {
|
1829
|
-
--tw-text-opacity: 1
|
1830
|
-
color: rgb(249 253 255 / var(--tw-text-opacity))
|
1849
|
+
--tw-text-opacity: 1;
|
1850
|
+
color: rgb(249 253 255 / var(--tw-text-opacity));
|
1831
1851
|
}
|
1832
1852
|
.text-grey-100 {
|
1833
|
-
--tw-text-opacity: 1
|
1834
|
-
color: rgb(25 25 29 / var(--tw-text-opacity))
|
1853
|
+
--tw-text-opacity: 1;
|
1854
|
+
color: rgb(25 25 29 / var(--tw-text-opacity));
|
1835
1855
|
}
|
1836
1856
|
.text-grey-90 {
|
1837
|
-
--tw-text-opacity: 1
|
1838
|
-
color: rgb(41 42 49 / var(--tw-text-opacity))
|
1857
|
+
--tw-text-opacity: 1;
|
1858
|
+
color: rgb(41 42 49 / var(--tw-text-opacity));
|
1839
1859
|
}
|
1840
1860
|
.text-grey-80 {
|
1841
|
-
--tw-text-opacity: 1
|
1842
|
-
color: rgb(58 58 68 / var(--tw-text-opacity))
|
1861
|
+
--tw-text-opacity: 1;
|
1862
|
+
color: rgb(58 58 68 / var(--tw-text-opacity));
|
1843
1863
|
}
|
1844
1864
|
.text-grey-70 {
|
1845
|
-
--tw-text-opacity: 1
|
1846
|
-
color: rgb(74 75 87 / var(--tw-text-opacity))
|
1865
|
+
--tw-text-opacity: 1;
|
1866
|
+
color: rgb(74 75 87 / var(--tw-text-opacity));
|
1847
1867
|
}
|
1848
1868
|
.text-grey-60 {
|
1849
|
-
--tw-text-opacity: 1
|
1850
|
-
color: rgb(90 91 106 / var(--tw-text-opacity))
|
1869
|
+
--tw-text-opacity: 1;
|
1870
|
+
color: rgb(90 91 106 / var(--tw-text-opacity));
|
1851
1871
|
}
|
1852
1872
|
.text-grey-50 {
|
1853
|
-
--tw-text-opacity: 1
|
1854
|
-
color: rgb(120 120 133 / var(--tw-text-opacity))
|
1873
|
+
--tw-text-opacity: 1;
|
1874
|
+
color: rgb(120 120 133 / var(--tw-text-opacity));
|
1855
1875
|
}
|
1856
1876
|
.text-grey-40 {
|
1857
|
-
--tw-text-opacity: 1
|
1858
|
-
color: rgb(150 150 160 / var(--tw-text-opacity))
|
1877
|
+
--tw-text-opacity: 1;
|
1878
|
+
color: rgb(150 150 160 / var(--tw-text-opacity));
|
1859
1879
|
}
|
1860
1880
|
.text-grey-30 {
|
1861
|
-
--tw-text-opacity: 1
|
1862
|
-
color: rgb(180 180 187 / var(--tw-text-opacity))
|
1881
|
+
--tw-text-opacity: 1;
|
1882
|
+
color: rgb(180 180 187 / var(--tw-text-opacity));
|
1863
1883
|
}
|
1864
1884
|
.text-grey-10 {
|
1865
|
-
--tw-text-opacity: 1
|
1866
|
-
color: rgb(225 225 227 / var(--tw-text-opacity))
|
1885
|
+
--tw-text-opacity: 1;
|
1886
|
+
color: rgb(225 225 227 / var(--tw-text-opacity));
|
1867
1887
|
}
|
1868
1888
|
.text-grey-5 {
|
1869
|
-
--tw-text-opacity: 1
|
1870
|
-
color: rgb(237 237 240 / var(--tw-text-opacity))
|
1889
|
+
--tw-text-opacity: 1;
|
1890
|
+
color: rgb(237 237 240 / var(--tw-text-opacity));
|
1871
1891
|
}
|
1872
1892
|
.text-grey-0 {
|
1873
|
-
--tw-text-opacity: 1
|
1874
|
-
color: rgb(247 247 250 / var(--tw-text-opacity))
|
1893
|
+
--tw-text-opacity: 1;
|
1894
|
+
color: rgb(247 247 250 / var(--tw-text-opacity));
|
1875
1895
|
}
|
1876
1896
|
.text-secondary-100 {
|
1877
|
-
--tw-text-opacity: 1
|
1878
|
-
color: rgb(225 29 22 / var(--tw-text-opacity))
|
1897
|
+
--tw-text-opacity: 1;
|
1898
|
+
color: rgb(225 29 22 / var(--tw-text-opacity));
|
1879
1899
|
}
|
1880
1900
|
.text-secondary-90 {
|
1881
|
-
--tw-text-opacity: 1
|
1882
|
-
color: rgb(235 70 16 / var(--tw-text-opacity))
|
1901
|
+
--tw-text-opacity: 1;
|
1902
|
+
color: rgb(235 70 16 / var(--tw-text-opacity));
|
1883
1903
|
}
|
1884
1904
|
.text-secondary-80 {
|
1885
|
-
--tw-text-opacity: 1
|
1886
|
-
color: rgb(243 88 13 / var(--tw-text-opacity))
|
1905
|
+
--tw-text-opacity: 1;
|
1906
|
+
color: rgb(243 88 13 / var(--tw-text-opacity));
|
1887
1907
|
}
|
1888
1908
|
.text-secondary-70 {
|
1889
|
-
--tw-text-opacity: 1
|
1890
|
-
color: rgb(249 106 2 / var(--tw-text-opacity))
|
1909
|
+
--tw-text-opacity: 1;
|
1910
|
+
color: rgb(249 106 2 / var(--tw-text-opacity));
|
1891
1911
|
}
|
1892
1912
|
.text-secondary-60 {
|
1893
|
-
--tw-text-opacity: 1
|
1894
|
-
color: rgb(255 119 0 / var(--tw-text-opacity))
|
1913
|
+
--tw-text-opacity: 1;
|
1914
|
+
color: rgb(255 119 0 / var(--tw-text-opacity));
|
1895
1915
|
}
|
1896
1916
|
.text-secondary-50 {
|
1897
|
-
--tw-text-opacity: 1
|
1898
|
-
color: rgb(252 135 26 / var(--tw-text-opacity))
|
1917
|
+
--tw-text-opacity: 1;
|
1918
|
+
color: rgb(252 135 26 / var(--tw-text-opacity));
|
1899
1919
|
}
|
1900
1920
|
.text-secondary-40 {
|
1901
|
-
--tw-text-opacity: 1
|
1902
|
-
color: rgb(251 154 62 / var(--tw-text-opacity))
|
1921
|
+
--tw-text-opacity: 1;
|
1922
|
+
color: rgb(251 154 62 / var(--tw-text-opacity));
|
1903
1923
|
}
|
1904
1924
|
.text-secondary-30 {
|
1905
|
-
--tw-text-opacity: 1
|
1906
|
-
color: rgb(250 178 110 / var(--tw-text-opacity))
|
1925
|
+
--tw-text-opacity: 1;
|
1926
|
+
color: rgb(250 178 110 / var(--tw-text-opacity));
|
1907
1927
|
}
|
1908
1928
|
.text-secondary-20 {
|
1909
|
-
--tw-text-opacity: 1
|
1910
|
-
color: rgb(248 201 156 / var(--tw-text-opacity))
|
1929
|
+
--tw-text-opacity: 1;
|
1930
|
+
color: rgb(248 201 156 / var(--tw-text-opacity));
|
1911
1931
|
}
|
1912
1932
|
.text-secondary-10 {
|
1913
|
-
--tw-text-opacity: 1
|
1914
|
-
color: rgb(254 232 208 / var(--tw-text-opacity))
|
1933
|
+
--tw-text-opacity: 1;
|
1934
|
+
color: rgb(254 232 208 / var(--tw-text-opacity));
|
1915
1935
|
}
|
1916
1936
|
.text-secondary-5 {
|
1917
|
-
--tw-text-opacity: 1
|
1918
|
-
color: rgb(255 243 232 / var(--tw-text-opacity))
|
1937
|
+
--tw-text-opacity: 1;
|
1938
|
+
color: rgb(255 243 232 / var(--tw-text-opacity));
|
1919
1939
|
}
|
1920
1940
|
.text-secondary-0 {
|
1921
|
-
--tw-text-opacity: 1
|
1922
|
-
color: rgb(255 251 248 / var(--tw-text-opacity))
|
1941
|
+
--tw-text-opacity: 1;
|
1942
|
+
color: rgb(255 251 248 / var(--tw-text-opacity));
|
1923
1943
|
}
|
1924
1944
|
.text-primary-100 {
|
1925
|
-
--tw-text-opacity: 1
|
1926
|
-
color: rgb(167 0 69 / var(--tw-text-opacity))
|
1945
|
+
--tw-text-opacity: 1;
|
1946
|
+
color: rgb(167 0 69 / var(--tw-text-opacity));
|
1927
1947
|
}
|
1928
1948
|
.text-primary-90 {
|
1929
|
-
--tw-text-opacity: 1
|
1930
|
-
color: rgb(198 4 67 / var(--tw-text-opacity))
|
1949
|
+
--tw-text-opacity: 1;
|
1950
|
+
color: rgb(198 4 67 / var(--tw-text-opacity));
|
1931
1951
|
}
|
1932
1952
|
.text-primary-80 {
|
1933
|
-
--tw-text-opacity: 1
|
1934
|
-
color: rgb(228 26 74 / var(--tw-text-opacity))
|
1953
|
+
--tw-text-opacity: 1;
|
1954
|
+
color: rgb(228 26 74 / var(--tw-text-opacity));
|
1935
1955
|
}
|
1936
1956
|
.text-primary-70 {
|
1937
|
-
--tw-text-opacity: 1
|
1938
|
-
color: rgb(255 53 84 / var(--tw-text-opacity))
|
1957
|
+
--tw-text-opacity: 1;
|
1958
|
+
color: rgb(255 53 84 / var(--tw-text-opacity));
|
1939
1959
|
}
|
1940
1960
|
.text-primary-60 {
|
1941
|
-
--tw-text-opacity: 1
|
1942
|
-
color: rgb(255 82 117 / var(--tw-text-opacity))
|
1961
|
+
--tw-text-opacity: 1;
|
1962
|
+
color: rgb(255 82 117 / var(--tw-text-opacity));
|
1943
1963
|
}
|
1944
1964
|
.text-primary-50 {
|
1945
|
-
--tw-text-opacity: 1
|
1946
|
-
color: rgb(255 111 148 / var(--tw-text-opacity))
|
1965
|
+
--tw-text-opacity: 1;
|
1966
|
+
color: rgb(255 111 148 / var(--tw-text-opacity));
|
1947
1967
|
}
|
1948
1968
|
.text-primary-40 {
|
1949
|
-
--tw-text-opacity: 1
|
1950
|
-
color: rgb(255 141 176 / var(--tw-text-opacity))
|
1969
|
+
--tw-text-opacity: 1;
|
1970
|
+
color: rgb(255 141 176 / var(--tw-text-opacity));
|
1951
1971
|
}
|
1952
1972
|
.text-primary-30 {
|
1953
|
-
--tw-text-opacity: 1
|
1954
|
-
color: rgb(255 169 201 / var(--tw-text-opacity))
|
1973
|
+
--tw-text-opacity: 1;
|
1974
|
+
color: rgb(255 169 201 / var(--tw-text-opacity));
|
1955
1975
|
}
|
1956
1976
|
.text-primary-20 {
|
1957
|
-
--tw-text-opacity: 1
|
1958
|
-
color: rgb(255 196 222 / var(--tw-text-opacity))
|
1977
|
+
--tw-text-opacity: 1;
|
1978
|
+
color: rgb(255 196 222 / var(--tw-text-opacity));
|
1959
1979
|
}
|
1960
1980
|
.text-primary-10 {
|
1961
|
-
--tw-text-opacity: 1
|
1962
|
-
color: rgb(255 222 239 / var(--tw-text-opacity))
|
1981
|
+
--tw-text-opacity: 1;
|
1982
|
+
color: rgb(255 222 239 / var(--tw-text-opacity));
|
1963
1983
|
}
|
1964
1984
|
.text-primary-5 {
|
1965
|
-
--tw-text-opacity: 1
|
1966
|
-
color: rgb(255 232 244 / var(--tw-text-opacity))
|
1985
|
+
--tw-text-opacity: 1;
|
1986
|
+
color: rgb(255 232 244 / var(--tw-text-opacity));
|
1967
1987
|
}
|
1968
1988
|
.text-primary-0 {
|
1969
|
-
--tw-text-opacity: 1
|
1970
|
-
color: rgb(255 249 252 / var(--tw-text-opacity))
|
1989
|
+
--tw-text-opacity: 1;
|
1990
|
+
color: rgb(255 249 252 / var(--tw-text-opacity));
|
1971
1991
|
}
|
1972
1992
|
.text-grey-20 {
|
1973
|
-
--tw-text-opacity: 1
|
1974
|
-
color: rgb(210 210 214 / var(--tw-text-opacity))
|
1993
|
+
--tw-text-opacity: 1;
|
1994
|
+
color: rgb(210 210 214 / var(--tw-text-opacity));
|
1975
1995
|
}
|
1976
1996
|
.text-transparent {
|
1977
|
-
color: transparent
|
1997
|
+
color: transparent;
|
1978
1998
|
}
|
1979
1999
|
.text-white {
|
1980
|
-
--tw-text-opacity: 1
|
1981
|
-
color: rgb(255 255 255 / var(--tw-text-opacity))
|
2000
|
+
--tw-text-opacity: 1;
|
2001
|
+
color: rgb(255 255 255 / var(--tw-text-opacity));
|
1982
2002
|
}
|
1983
2003
|
.underline {
|
1984
|
-
-webkit-text-decoration-line: underline
|
1985
|
-
text-decoration-line: underline
|
2004
|
+
-webkit-text-decoration-line: underline;
|
2005
|
+
text-decoration-line: underline;
|
1986
2006
|
}
|
1987
2007
|
.no-underline {
|
1988
|
-
-webkit-text-decoration-line: none
|
1989
|
-
text-decoration-line: none
|
2008
|
+
-webkit-text-decoration-line: none;
|
2009
|
+
text-decoration-line: none;
|
1990
2010
|
}
|
1991
2011
|
.underline-offset-2 {
|
1992
|
-
text-underline-offset: 2px
|
2012
|
+
text-underline-offset: 2px;
|
1993
2013
|
}
|
1994
2014
|
.opacity-70 {
|
1995
|
-
opacity: 0.7
|
2015
|
+
opacity: 0.7;
|
1996
2016
|
}
|
1997
2017
|
.opacity-40 {
|
1998
|
-
opacity: 0.4
|
2018
|
+
opacity: 0.4;
|
1999
2019
|
}
|
2000
2020
|
.shadow-16dp {
|
2001
|
-
--tw-shadow: 0px 16px 32px rgba(90, 91, 106, 0.12), 0px 8px 16px rgba(58, 58, 68, 0.12)
|
2002
|
-
--tw-shadow-colored: 0px 16px 32px var(--tw-shadow-color), 0px 8px 16px var(--tw-shadow-color)
|
2003
|
-
box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), var(--tw-shadow)
|
2004
|
-
box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0,0,0,0)), var(--tw-ring-shadow, 0 0 rgba(0,0,0,0)), var(--tw-shadow)
|
2021
|
+
--tw-shadow: 0px 16px 32px rgba(90, 91, 106, 0.12), 0px 8px 16px rgba(58, 58, 68, 0.12);
|
2022
|
+
--tw-shadow-colored: 0px 16px 32px var(--tw-shadow-color), 0px 8px 16px var(--tw-shadow-color);
|
2023
|
+
box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), var(--tw-shadow);
|
2024
|
+
box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0,0,0,0)), var(--tw-ring-shadow, 0 0 rgba(0,0,0,0)), var(--tw-shadow);
|
2005
2025
|
}
|
2006
2026
|
.shadow-4dp {
|
2007
|
-
--tw-shadow: 0px 4px 8px rgba(90, 91, 106, 0.20), 0px 2px 4px rgba(58, 58, 68, 0.20)
|
2008
|
-
--tw-shadow-colored: 0px 4px 8px var(--tw-shadow-color), 0px 2px 4px var(--tw-shadow-color)
|
2009
|
-
box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), var(--tw-shadow)
|
2010
|
-
box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0,0,0,0)), var(--tw-ring-shadow, 0 0 rgba(0,0,0,0)), var(--tw-shadow)
|
2027
|
+
--tw-shadow: 0px 4px 8px rgba(90, 91, 106, 0.20), 0px 2px 4px rgba(58, 58, 68, 0.20);
|
2028
|
+
--tw-shadow-colored: 0px 4px 8px var(--tw-shadow-color), 0px 2px 4px var(--tw-shadow-color);
|
2029
|
+
box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), var(--tw-shadow);
|
2030
|
+
box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0,0,0,0)), var(--tw-ring-shadow, 0 0 rgba(0,0,0,0)), var(--tw-shadow);
|
2011
2031
|
}
|
2012
2032
|
.shadow-2dp {
|
2013
|
-
--tw-shadow: 0px 2px 4px rgba(90, 91, 106, 0.24), 0px 1px 2px rgba(58, 58, 68, 0.24)
|
2014
|
-
--tw-shadow-colored: 0px 2px 4px var(--tw-shadow-color), 0px 1px 2px var(--tw-shadow-color)
|
2015
|
-
box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), var(--tw-shadow)
|
2016
|
-
box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0,0,0,0)), var(--tw-ring-shadow, 0 0 rgba(0,0,0,0)), var(--tw-shadow)
|
2033
|
+
--tw-shadow: 0px 2px 4px rgba(90, 91, 106, 0.24), 0px 1px 2px rgba(58, 58, 68, 0.24);
|
2034
|
+
--tw-shadow-colored: 0px 2px 4px var(--tw-shadow-color), 0px 1px 2px var(--tw-shadow-color);
|
2035
|
+
box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), var(--tw-shadow);
|
2036
|
+
box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0,0,0,0)), var(--tw-ring-shadow, 0 0 rgba(0,0,0,0)), var(--tw-shadow);
|
2017
2037
|
}
|
2018
2038
|
.outline-none {
|
2019
|
-
outline: 2px solid transparent
|
2020
|
-
outline-offset: 2px
|
2039
|
+
outline: 2px solid transparent;
|
2040
|
+
outline-offset: 2px;
|
2021
2041
|
}
|
2022
2042
|
.ring-1 {
|
2023
|
-
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color)
|
2024
|
-
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color)
|
2025
|
-
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 rgba(0,0,0,0)
|
2026
|
-
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 rgba(0,0,0,0))
|
2043
|
+
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
2044
|
+
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
2045
|
+
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 rgba(0,0,0,0);
|
2046
|
+
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 rgba(0,0,0,0));
|
2027
2047
|
}
|
2028
2048
|
.ring-2 {
|
2029
|
-
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color)
|
2030
|
-
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color)
|
2031
|
-
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 rgba(0,0,0,0)
|
2032
|
-
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 rgba(0,0,0,0))
|
2049
|
+
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
2050
|
+
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
2051
|
+
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 rgba(0,0,0,0);
|
2052
|
+
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 rgba(0,0,0,0));
|
2033
2053
|
}
|
2034
2054
|
.ring-inset {
|
2035
|
-
--tw-ring-inset: inset
|
2055
|
+
--tw-ring-inset: inset;
|
2036
2056
|
}
|
2037
2057
|
.ring-grey-30 {
|
2038
|
-
--tw-ring-opacity: 1
|
2039
|
-
--tw-ring-color: rgb(180 180 187 / var(--tw-ring-opacity))
|
2058
|
+
--tw-ring-opacity: 1;
|
2059
|
+
--tw-ring-color: rgb(180 180 187 / var(--tw-ring-opacity));
|
2040
2060
|
}
|
2041
2061
|
.ring-offset-0 {
|
2042
|
-
--tw-ring-offset-width: 0px
|
2062
|
+
--tw-ring-offset-width: 0px;
|
2043
2063
|
}
|
2044
2064
|
.blur {
|
2045
|
-
--tw-blur: blur(8px)
|
2046
|
-
filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)
|
2065
|
+
--tw-blur: blur(8px);
|
2066
|
+
filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
|
2047
2067
|
}
|
2048
2068
|
.filter {
|
2049
|
-
filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)
|
2069
|
+
filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
|
2050
2070
|
}
|
2051
2071
|
.transition {
|
2052
|
-
transition-property: color, background-color, border-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-text-decoration-color, -webkit-backdrop-filter
|
2053
|
-
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter
|
2054
|
-
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-text-decoration-color, -webkit-backdrop-filter
|
2055
|
-
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1)
|
2056
|
-
transition-duration: 150ms
|
2072
|
+
transition-property: color, background-color, border-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-text-decoration-color, -webkit-backdrop-filter;
|
2073
|
+
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
|
2074
|
+
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-text-decoration-color, -webkit-backdrop-filter;
|
2075
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
2076
|
+
transition-duration: 150ms;
|
2057
2077
|
}
|
2058
2078
|
.transition-all {
|
2059
|
-
transition-property: all
|
2060
|
-
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1)
|
2061
|
-
transition-duration: 150ms
|
2079
|
+
transition-property: all;
|
2080
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
2081
|
+
transition-duration: 150ms;
|
2062
2082
|
}
|
2063
2083
|
.delay-150 {
|
2064
|
-
transition-delay: 150ms
|
2084
|
+
transition-delay: 150ms;
|
2065
2085
|
}
|
2066
2086
|
.duration-300 {
|
2067
|
-
transition-duration: 300ms
|
2087
|
+
transition-duration: 300ms;
|
2068
2088
|
}
|
2069
2089
|
.ease-in-out {
|
2070
|
-
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1)
|
2090
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
2071
2091
|
}
|
2072
2092
|
.line-clamp-1 {
|
2073
|
-
overflow: hidden
|
2074
|
-
display: -webkit-box
|
2075
|
-
-webkit-box-orient: vertical
|
2076
|
-
-webkit-line-clamp: 1
|
2093
|
+
overflow: hidden;
|
2094
|
+
display: -webkit-box;
|
2095
|
+
-webkit-box-orient: vertical;
|
2096
|
+
-webkit-line-clamp: 1;
|
2077
2097
|
}
|
2078
2098
|
.line-clamp-2 {
|
2079
|
-
overflow: hidden
|
2080
|
-
display: -webkit-box
|
2081
|
-
-webkit-box-orient: vertical
|
2082
|
-
-webkit-line-clamp: 2
|
2099
|
+
overflow: hidden;
|
2100
|
+
display: -webkit-box;
|
2101
|
+
-webkit-box-orient: vertical;
|
2102
|
+
-webkit-line-clamp: 2;
|
2083
2103
|
}
|
2084
2104
|
.line-clamp-3 {
|
2085
|
-
overflow: hidden
|
2086
|
-
display: -webkit-box
|
2087
|
-
-webkit-box-orient: vertical
|
2088
|
-
-webkit-line-clamp: 3
|
2105
|
+
overflow: hidden;
|
2106
|
+
display: -webkit-box;
|
2107
|
+
-webkit-box-orient: vertical;
|
2108
|
+
-webkit-line-clamp: 3;
|
2089
2109
|
}
|
2090
2110
|
.line-clamp-4 {
|
2091
|
-
overflow: hidden
|
2092
|
-
display: -webkit-box
|
2093
|
-
-webkit-box-orient: vertical
|
2094
|
-
-webkit-line-clamp: 4
|
2111
|
+
overflow: hidden;
|
2112
|
+
display: -webkit-box;
|
2113
|
+
-webkit-box-orient: vertical;
|
2114
|
+
-webkit-line-clamp: 4;
|
2095
2115
|
}
|
2096
2116
|
.line-clamp-5 {
|
2097
|
-
overflow: hidden
|
2098
|
-
display: -webkit-box
|
2099
|
-
-webkit-box-orient: vertical
|
2100
|
-
-webkit-line-clamp: 5
|
2117
|
+
overflow: hidden;
|
2118
|
+
display: -webkit-box;
|
2119
|
+
-webkit-box-orient: vertical;
|
2120
|
+
-webkit-line-clamp: 5;
|
2101
2121
|
}
|
2102
2122
|
.line-clamp-6 {
|
2103
|
-
overflow: hidden
|
2104
|
-
display: -webkit-box
|
2105
|
-
-webkit-box-orient: vertical
|
2106
|
-
-webkit-line-clamp: 6
|
2123
|
+
overflow: hidden;
|
2124
|
+
display: -webkit-box;
|
2125
|
+
-webkit-box-orient: vertical;
|
2126
|
+
-webkit-line-clamp: 6;
|
2107
2127
|
}
|
2108
2128
|
.scrollbar-hide {
|
2109
|
-
-ms-overflow-style: none
|
2110
|
-
scrollbar-width: none
|
2129
|
+
-ms-overflow-style: none;
|
2130
|
+
scrollbar-width: none;
|
2111
2131
|
}
|
2112
2132
|
.scrollbar-hide::-webkit-scrollbar {
|
2113
|
-
display: none
|
2133
|
+
display: none;
|
2114
2134
|
}
|
2115
2135
|
.placeholder\:text-grey-40::-moz-placeholder {
|
2116
|
-
--tw-text-opacity: 1
|
2117
|
-
color: rgb(150 150 160 / var(--tw-text-opacity))
|
2136
|
+
--tw-text-opacity: 1;
|
2137
|
+
color: rgb(150 150 160 / var(--tw-text-opacity));
|
2118
2138
|
}
|
2119
2139
|
.placeholder\:text-grey-40::placeholder {
|
2120
|
-
--tw-text-opacity: 1
|
2121
|
-
color: rgb(150 150 160 / var(--tw-text-opacity))
|
2140
|
+
--tw-text-opacity: 1;
|
2141
|
+
color: rgb(150 150 160 / var(--tw-text-opacity));
|
2122
2142
|
}
|
2123
2143
|
.before\:content-\[\'_\'\]::before {
|
2124
|
-
--tw-content: ' '
|
2125
|
-
content: var(--tw-content)
|
2144
|
+
--tw-content: ' ';
|
2145
|
+
content: var(--tw-content);
|
2126
2146
|
}
|
2127
2147
|
.first\:mt-0:first-child {
|
2128
|
-
margin-top: 0
|
2148
|
+
margin-top: 0;
|
2129
2149
|
}
|
2130
2150
|
.visited\:text-primary-80:visited {
|
2131
|
-
color: rgb(228, 26, 74 )
|
2151
|
+
color: rgb(228, 26, 74 );
|
2132
2152
|
}
|
2133
2153
|
.checked\:border-navyBlue-100:checked {
|
2134
|
-
--tw-border-opacity: 1
|
2135
|
-
border-color: rgb(48 55 94 / var(--tw-border-opacity))
|
2154
|
+
--tw-border-opacity: 1;
|
2155
|
+
border-color: rgb(48 55 94 / var(--tw-border-opacity));
|
2136
2156
|
}
|
2137
2157
|
.checked\:bg-navyBlue-100:checked {
|
2138
|
-
--tw-bg-opacity: 1
|
2139
|
-
background-color: rgb(48 55 94 / var(--tw-bg-opacity))
|
2158
|
+
--tw-bg-opacity: 1;
|
2159
|
+
background-color: rgb(48 55 94 / var(--tw-bg-opacity));
|
2140
2160
|
}
|
2141
2161
|
.checked\:bg-opacity-40:checked {
|
2142
|
-
--tw-bg-opacity: 0.4
|
2162
|
+
--tw-bg-opacity: 0.4;
|
2143
2163
|
}
|
2144
2164
|
.checked\:opacity-40:checked {
|
2145
|
-
opacity: 0.4
|
2165
|
+
opacity: 0.4;
|
2146
2166
|
}
|
2147
2167
|
.checked\:shadow-whiteInset:checked {
|
2148
|
-
--tw-shadow: inset 0 0 0 3px rgba(255,255,255,1)
|
2149
|
-
--tw-shadow-colored: inset 0 0 0 3px var(--tw-shadow-color)
|
2150
|
-
box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), var(--tw-shadow)
|
2151
|
-
box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0,0,0,0)), var(--tw-ring-shadow, 0 0 rgba(0,0,0,0)), var(--tw-shadow)
|
2168
|
+
--tw-shadow: inset 0 0 0 3px rgba(255,255,255,1);
|
2169
|
+
--tw-shadow-colored: inset 0 0 0 3px var(--tw-shadow-color);
|
2170
|
+
box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), var(--tw-shadow);
|
2171
|
+
box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0,0,0,0)), var(--tw-ring-shadow, 0 0 rgba(0,0,0,0)), var(--tw-shadow);
|
2152
2172
|
}
|
2153
2173
|
.hover\:cursor-pointer:hover {
|
2154
|
-
cursor: pointer
|
2174
|
+
cursor: pointer;
|
2155
2175
|
}
|
2156
2176
|
.hover\:border-grey-50:hover {
|
2157
|
-
--tw-border-opacity: 1
|
2158
|
-
border-color: rgb(120 120 133 / var(--tw-border-opacity))
|
2177
|
+
--tw-border-opacity: 1;
|
2178
|
+
border-color: rgb(120 120 133 / var(--tw-border-opacity));
|
2159
2179
|
}
|
2160
2180
|
.hover\:border-grey-20:hover {
|
2161
|
-
--tw-border-opacity: 1
|
2162
|
-
border-color: rgb(210 210 214 / var(--tw-border-opacity))
|
2181
|
+
--tw-border-opacity: 1;
|
2182
|
+
border-color: rgb(210 210 214 / var(--tw-border-opacity));
|
2163
2183
|
}
|
2164
2184
|
.hover\:bg-grey-0:hover {
|
2165
|
-
--tw-bg-opacity: 1
|
2166
|
-
background-color: rgb(247 247 250 / var(--tw-bg-opacity))
|
2185
|
+
--tw-bg-opacity: 1;
|
2186
|
+
background-color: rgb(247 247 250 / var(--tw-bg-opacity));
|
2167
2187
|
}
|
2168
2188
|
.hover\:bg-grey-30:hover {
|
2169
|
-
--tw-bg-opacity: 1
|
2170
|
-
background-color: rgb(180 180 187 / var(--tw-bg-opacity))
|
2189
|
+
--tw-bg-opacity: 1;
|
2190
|
+
background-color: rgb(180 180 187 / var(--tw-bg-opacity));
|
2171
2191
|
}
|
2172
2192
|
.hover\:bg-primary-70:hover {
|
2173
|
-
--tw-bg-opacity: 1
|
2174
|
-
background-color: rgb(255 53 84 / var(--tw-bg-opacity))
|
2193
|
+
--tw-bg-opacity: 1;
|
2194
|
+
background-color: rgb(255 53 84 / var(--tw-bg-opacity));
|
2175
2195
|
}
|
2176
2196
|
.hover\:bg-grey-5:hover {
|
2177
|
-
--tw-bg-opacity: 1
|
2178
|
-
background-color: rgb(237 237 240 / var(--tw-bg-opacity))
|
2197
|
+
--tw-bg-opacity: 1;
|
2198
|
+
background-color: rgb(237 237 240 / var(--tw-bg-opacity));
|
2179
2199
|
}
|
2180
2200
|
.hover\:text-primary-70:hover {
|
2181
|
-
--tw-text-opacity: 1
|
2182
|
-
color: rgb(255 53 84 / var(--tw-text-opacity))
|
2201
|
+
--tw-text-opacity: 1;
|
2202
|
+
color: rgb(255 53 84 / var(--tw-text-opacity));
|
2183
2203
|
}
|
2184
2204
|
.hover\:text-grey-80:hover {
|
2185
|
-
--tw-text-opacity: 1
|
2186
|
-
color: rgb(58 58 68 / var(--tw-text-opacity))
|
2205
|
+
--tw-text-opacity: 1;
|
2206
|
+
color: rgb(58 58 68 / var(--tw-text-opacity));
|
2187
2207
|
}
|
2188
2208
|
.hover\:text-grey-90:hover {
|
2189
|
-
--tw-text-opacity: 1
|
2190
|
-
color: rgb(41 42 49 / var(--tw-text-opacity))
|
2209
|
+
--tw-text-opacity: 1;
|
2210
|
+
color: rgb(41 42 49 / var(--tw-text-opacity));
|
2191
2211
|
}
|
2192
2212
|
.hover\:text-primary-80:hover {
|
2193
|
-
--tw-text-opacity: 1
|
2194
|
-
color: rgb(228 26 74 / var(--tw-text-opacity))
|
2213
|
+
--tw-text-opacity: 1;
|
2214
|
+
color: rgb(228 26 74 / var(--tw-text-opacity));
|
2195
2215
|
}
|
2196
2216
|
.hover\:no-underline:hover {
|
2197
|
-
-webkit-text-decoration-line: none
|
2198
|
-
text-decoration-line: none
|
2217
|
+
-webkit-text-decoration-line: none;
|
2218
|
+
text-decoration-line: none;
|
2199
2219
|
}
|
2200
2220
|
.hover\:ring-grey-50:hover {
|
2201
|
-
--tw-ring-opacity: 1
|
2202
|
-
--tw-ring-color: rgb(120 120 133 / var(--tw-ring-opacity))
|
2221
|
+
--tw-ring-opacity: 1;
|
2222
|
+
--tw-ring-color: rgb(120 120 133 / var(--tw-ring-opacity));
|
2203
2223
|
}
|
2204
2224
|
.hover\:checked\:bg-navyBlue-100:checked:hover {
|
2205
|
-
--tw-bg-opacity: 1
|
2206
|
-
background-color: rgb(48 55 94 / var(--tw-bg-opacity))
|
2225
|
+
--tw-bg-opacity: 1;
|
2226
|
+
background-color: rgb(48 55 94 / var(--tw-bg-opacity));
|
2207
2227
|
}
|
2208
2228
|
.focus\:border:focus {
|
2209
|
-
border-width: 1px
|
2229
|
+
border-width: 1px;
|
2210
2230
|
}
|
2211
2231
|
.focus\:border-info-70:focus {
|
2212
|
-
--tw-border-opacity: 1
|
2213
|
-
border-color: rgb(3 153 227 / var(--tw-border-opacity))
|
2232
|
+
--tw-border-opacity: 1;
|
2233
|
+
border-color: rgb(3 153 227 / var(--tw-border-opacity));
|
2214
2234
|
}
|
2215
2235
|
.focus\:border-transparent:focus {
|
2216
|
-
border-color: transparent
|
2236
|
+
border-color: transparent;
|
2217
2237
|
}
|
2218
2238
|
.focus\:text-primary-80:focus {
|
2219
|
-
--tw-text-opacity: 1
|
2220
|
-
color: rgb(228 26 74 / var(--tw-text-opacity))
|
2239
|
+
--tw-text-opacity: 1;
|
2240
|
+
color: rgb(228 26 74 / var(--tw-text-opacity));
|
2221
2241
|
}
|
2222
2242
|
.focus\:outline-none:focus {
|
2223
|
-
outline: 2px solid transparent
|
2224
|
-
outline-offset: 2px
|
2243
|
+
outline: 2px solid transparent;
|
2244
|
+
outline-offset: 2px;
|
2225
2245
|
}
|
2226
2246
|
.focus\:ring-0:focus {
|
2227
|
-
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color)
|
2228
|
-
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color)
|
2229
|
-
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 rgba(0,0,0,0)
|
2230
|
-
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 rgba(0,0,0,0))
|
2247
|
+
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
2248
|
+
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
2249
|
+
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 rgba(0,0,0,0);
|
2250
|
+
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 rgba(0,0,0,0));
|
2231
2251
|
}
|
2232
2252
|
.focus\:ring-2:focus {
|
2233
|
-
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color)
|
2234
|
-
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color)
|
2235
|
-
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 rgba(0,0,0,0)
|
2236
|
-
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 rgba(0,0,0,0))
|
2253
|
+
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
2254
|
+
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
2255
|
+
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 rgba(0,0,0,0);
|
2256
|
+
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 rgba(0,0,0,0));
|
2237
2257
|
}
|
2238
2258
|
.focus\:ring-1:focus {
|
2239
|
-
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color)
|
2240
|
-
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color)
|
2241
|
-
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 rgba(0,0,0,0)
|
2242
|
-
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 rgba(0,0,0,0))
|
2259
|
+
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
2260
|
+
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
2261
|
+
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 rgba(0,0,0,0);
|
2262
|
+
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 rgba(0,0,0,0));
|
2243
2263
|
}
|
2244
2264
|
.focus\:ring-grey-60:focus {
|
2245
|
-
--tw-ring-opacity: 1
|
2246
|
-
--tw-ring-color: rgb(90 91 106 / var(--tw-ring-opacity))
|
2265
|
+
--tw-ring-opacity: 1;
|
2266
|
+
--tw-ring-color: rgb(90 91 106 / var(--tw-ring-opacity));
|
2247
2267
|
}
|
2248
2268
|
.focus\:ring-offset-0:focus {
|
2249
|
-
--tw-ring-offset-width: 0px
|
2269
|
+
--tw-ring-offset-width: 0px;
|
2250
2270
|
}
|
2251
2271
|
.focus-visible\:border-info-70.focus-visible {
|
2252
|
-
--tw-border-opacity: 1
|
2253
|
-
border-color: rgb(3 153 227 / var(--tw-border-opacity))
|
2272
|
+
--tw-border-opacity: 1;
|
2273
|
+
border-color: rgb(3 153 227 / var(--tw-border-opacity));
|
2254
2274
|
}
|
2255
2275
|
.focus-visible\:border-info-70:focus-visible {
|
2256
|
-
--tw-border-opacity: 1
|
2257
|
-
border-color: rgb(3 153 227 / var(--tw-border-opacity))
|
2276
|
+
--tw-border-opacity: 1;
|
2277
|
+
border-color: rgb(3 153 227 / var(--tw-border-opacity));
|
2258
2278
|
}
|
2259
2279
|
.focus-visible\:bg-grey-0.focus-visible {
|
2260
|
-
--tw-bg-opacity: 1
|
2261
|
-
background-color: rgb(247 247 250 / var(--tw-bg-opacity))
|
2280
|
+
--tw-bg-opacity: 1;
|
2281
|
+
background-color: rgb(247 247 250 / var(--tw-bg-opacity));
|
2262
2282
|
}
|
2263
2283
|
.focus-visible\:bg-grey-0:focus-visible {
|
2264
|
-
--tw-bg-opacity: 1
|
2265
|
-
background-color: rgb(247 247 250 / var(--tw-bg-opacity))
|
2284
|
+
--tw-bg-opacity: 1;
|
2285
|
+
background-color: rgb(247 247 250 / var(--tw-bg-opacity));
|
2266
2286
|
}
|
2267
2287
|
.focus-visible\:text-grey-90.focus-visible {
|
2268
|
-
--tw-text-opacity: 1
|
2269
|
-
color: rgb(41 42 49 / var(--tw-text-opacity))
|
2288
|
+
--tw-text-opacity: 1;
|
2289
|
+
color: rgb(41 42 49 / var(--tw-text-opacity));
|
2270
2290
|
}
|
2271
2291
|
.focus-visible\:text-grey-90:focus-visible {
|
2272
|
-
--tw-text-opacity: 1
|
2273
|
-
color: rgb(41 42 49 / var(--tw-text-opacity))
|
2292
|
+
--tw-text-opacity: 1;
|
2293
|
+
color: rgb(41 42 49 / var(--tw-text-opacity));
|
2274
2294
|
}
|
2275
2295
|
.focus-visible\:text-grey-80.focus-visible {
|
2276
|
-
--tw-text-opacity: 1
|
2277
|
-
color: rgb(58 58 68 / var(--tw-text-opacity))
|
2296
|
+
--tw-text-opacity: 1;
|
2297
|
+
color: rgb(58 58 68 / var(--tw-text-opacity));
|
2278
2298
|
}
|
2279
2299
|
.focus-visible\:text-grey-80:focus-visible {
|
2280
|
-
--tw-text-opacity: 1
|
2281
|
-
color: rgb(58 58 68 / var(--tw-text-opacity))
|
2300
|
+
--tw-text-opacity: 1;
|
2301
|
+
color: rgb(58 58 68 / var(--tw-text-opacity));
|
2282
2302
|
}
|
2283
2303
|
.focus-visible\:outline-0.focus-visible {
|
2284
|
-
outline-width: 0px
|
2304
|
+
outline-width: 0px;
|
2285
2305
|
}
|
2286
2306
|
.focus-visible\:outline-0:focus-visible {
|
2287
|
-
outline-width: 0px
|
2307
|
+
outline-width: 0px;
|
2288
2308
|
}
|
2289
2309
|
.focus-visible\:ring-2.focus-visible {
|
2290
|
-
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color)
|
2291
|
-
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color)
|
2292
|
-
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 rgba(0,0,0,0)
|
2293
|
-
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 rgba(0,0,0,0))
|
2310
|
+
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
2311
|
+
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
2312
|
+
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 rgba(0,0,0,0);
|
2313
|
+
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 rgba(0,0,0,0));
|
2294
2314
|
}
|
2295
2315
|
.focus-visible\:ring-2:focus-visible {
|
2296
|
-
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color)
|
2297
|
-
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color)
|
2298
|
-
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 rgba(0,0,0,0)
|
2299
|
-
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 rgba(0,0,0,0))
|
2316
|
+
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
2317
|
+
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
2318
|
+
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 rgba(0,0,0,0);
|
2319
|
+
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 rgba(0,0,0,0));
|
2300
2320
|
}
|
2301
2321
|
.focus-visible\:ring-1.focus-visible {
|
2302
|
-
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color)
|
2303
|
-
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color)
|
2304
|
-
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 rgba(0,0,0,0)
|
2305
|
-
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 rgba(0,0,0,0))
|
2322
|
+
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
2323
|
+
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
2324
|
+
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 rgba(0,0,0,0);
|
2325
|
+
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 rgba(0,0,0,0));
|
2306
2326
|
}
|
2307
2327
|
.focus-visible\:ring-1:focus-visible {
|
2308
|
-
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color)
|
2309
|
-
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color)
|
2310
|
-
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 rgba(0,0,0,0)
|
2311
|
-
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 rgba(0,0,0,0))
|
2328
|
+
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
2329
|
+
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
2330
|
+
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 rgba(0,0,0,0);
|
2331
|
+
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 rgba(0,0,0,0));
|
2312
2332
|
}
|
2313
2333
|
.focus-visible\:ring-inset.focus-visible {
|
2314
|
-
--tw-ring-inset: inset
|
2334
|
+
--tw-ring-inset: inset;
|
2315
2335
|
}
|
2316
2336
|
.focus-visible\:ring-inset:focus-visible {
|
2317
|
-
--tw-ring-inset: inset
|
2337
|
+
--tw-ring-inset: inset;
|
2318
2338
|
}
|
2319
2339
|
.focus-visible\:ring-primary-100.focus-visible {
|
2320
|
-
--tw-ring-opacity: 1
|
2321
|
-
--tw-ring-color: rgb(167 0 69 / var(--tw-ring-opacity))
|
2340
|
+
--tw-ring-opacity: 1;
|
2341
|
+
--tw-ring-color: rgb(167 0 69 / var(--tw-ring-opacity));
|
2322
2342
|
}
|
2323
2343
|
.focus-visible\:ring-primary-100:focus-visible {
|
2324
|
-
--tw-ring-opacity: 1
|
2325
|
-
--tw-ring-color: rgb(167 0 69 / var(--tw-ring-opacity))
|
2344
|
+
--tw-ring-opacity: 1;
|
2345
|
+
--tw-ring-color: rgb(167 0 69 / var(--tw-ring-opacity));
|
2326
2346
|
}
|
2327
2347
|
.focus-visible\:ring-grey-50.focus-visible {
|
2328
|
-
--tw-ring-opacity: 1
|
2329
|
-
--tw-ring-color: rgb(120 120 133 / var(--tw-ring-opacity))
|
2348
|
+
--tw-ring-opacity: 1;
|
2349
|
+
--tw-ring-color: rgb(120 120 133 / var(--tw-ring-opacity));
|
2330
2350
|
}
|
2331
2351
|
.focus-visible\:ring-grey-50:focus-visible {
|
2332
|
-
--tw-ring-opacity: 1
|
2333
|
-
--tw-ring-color: rgb(120 120 133 / var(--tw-ring-opacity))
|
2352
|
+
--tw-ring-opacity: 1;
|
2353
|
+
--tw-ring-color: rgb(120 120 133 / var(--tw-ring-opacity));
|
2334
2354
|
}
|
2335
2355
|
.focus-visible\:ring-info-70.focus-visible {
|
2336
|
-
--tw-ring-opacity: 1
|
2337
|
-
--tw-ring-color: rgb(3 153 227 / var(--tw-ring-opacity))
|
2356
|
+
--tw-ring-opacity: 1;
|
2357
|
+
--tw-ring-color: rgb(3 153 227 / var(--tw-ring-opacity));
|
2338
2358
|
}
|
2339
2359
|
.focus-visible\:ring-info-70:focus-visible {
|
2340
|
-
--tw-ring-opacity: 1
|
2341
|
-
--tw-ring-color: rgb(3 153 227 / var(--tw-ring-opacity))
|
2360
|
+
--tw-ring-opacity: 1;
|
2361
|
+
--tw-ring-color: rgb(3 153 227 / var(--tw-ring-opacity));
|
2342
2362
|
}
|
2343
2363
|
.active\:bg-grey-5:active {
|
2344
|
-
--tw-bg-opacity: 1
|
2345
|
-
background-color: rgb(237 237 240 / var(--tw-bg-opacity))
|
2364
|
+
--tw-bg-opacity: 1;
|
2365
|
+
background-color: rgb(237 237 240 / var(--tw-bg-opacity));
|
2346
2366
|
}
|
2347
2367
|
.active\:bg-primary-90:active {
|
2348
|
-
--tw-bg-opacity: 1
|
2349
|
-
background-color: rgb(198 4 67 / var(--tw-bg-opacity))
|
2368
|
+
--tw-bg-opacity: 1;
|
2369
|
+
background-color: rgb(198 4 67 / var(--tw-bg-opacity));
|
2350
2370
|
}
|
2351
2371
|
.active\:bg-transparent:active {
|
2352
|
-
background-color: transparent
|
2372
|
+
background-color: transparent;
|
2353
2373
|
}
|
2354
2374
|
.active\:bg-grey-10:active {
|
2355
|
-
--tw-bg-opacity: 1
|
2356
|
-
background-color: rgb(225 225 227 / var(--tw-bg-opacity))
|
2375
|
+
--tw-bg-opacity: 1;
|
2376
|
+
background-color: rgb(225 225 227 / var(--tw-bg-opacity));
|
2357
2377
|
}
|
2358
2378
|
.active\:text-primary-70:active {
|
2359
|
-
--tw-text-opacity: 1
|
2360
|
-
color: rgb(255 53 84 / var(--tw-text-opacity))
|
2379
|
+
--tw-text-opacity: 1;
|
2380
|
+
color: rgb(255 53 84 / var(--tw-text-opacity));
|
2361
2381
|
}
|
2362
2382
|
.active\:text-grey-80:active {
|
2363
|
-
--tw-text-opacity: 1
|
2364
|
-
color: rgb(58 58 68 / var(--tw-text-opacity))
|
2383
|
+
--tw-text-opacity: 1;
|
2384
|
+
color: rgb(58 58 68 / var(--tw-text-opacity));
|
2365
2385
|
}
|
2366
2386
|
.active\:text-grey-50:active {
|
2367
|
-
--tw-text-opacity: 1
|
2368
|
-
color: rgb(120 120 133 / var(--tw-text-opacity))
|
2387
|
+
--tw-text-opacity: 1;
|
2388
|
+
color: rgb(120 120 133 / var(--tw-text-opacity));
|
2369
2389
|
}
|
2370
2390
|
.active\:text-grey-70:active {
|
2371
|
-
--tw-text-opacity: 1
|
2372
|
-
color: rgb(74 75 87 / var(--tw-text-opacity))
|
2391
|
+
--tw-text-opacity: 1;
|
2392
|
+
color: rgb(74 75 87 / var(--tw-text-opacity));
|
2373
2393
|
}
|
2374
2394
|
.active\:ring-0:active {
|
2375
|
-
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color)
|
2376
|
-
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color)
|
2377
|
-
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 rgba(0,0,0,0)
|
2378
|
-
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 rgba(0,0,0,0))
|
2395
|
+
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
2396
|
+
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
2397
|
+
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 rgba(0,0,0,0);
|
2398
|
+
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 rgba(0,0,0,0));
|
2379
2399
|
}
|
2380
2400
|
.active\:ring-grey-50:active {
|
2381
|
-
--tw-ring-opacity: 1
|
2382
|
-
--tw-ring-color: rgb(120 120 133 / var(--tw-ring-opacity))
|
2401
|
+
--tw-ring-opacity: 1;
|
2402
|
+
--tw-ring-color: rgb(120 120 133 / var(--tw-ring-opacity));
|
2383
2403
|
}
|
2384
2404
|
.disabled\:cursor-not-allowed:disabled {
|
2385
|
-
cursor: not-allowed
|
2405
|
+
cursor: not-allowed;
|
2386
2406
|
}
|
2387
2407
|
.disabled\:border-grey-20:disabled {
|
2388
|
-
--tw-border-opacity: 1
|
2389
|
-
border-color: rgb(210 210 214 / var(--tw-border-opacity))
|
2408
|
+
--tw-border-opacity: 1;
|
2409
|
+
border-color: rgb(210 210 214 / var(--tw-border-opacity));
|
2390
2410
|
}
|
2391
2411
|
.disabled\:bg-grey-5:disabled {
|
2392
|
-
--tw-bg-opacity: 1
|
2393
|
-
background-color: rgb(237 237 240 / var(--tw-bg-opacity))
|
2412
|
+
--tw-bg-opacity: 1;
|
2413
|
+
background-color: rgb(237 237 240 / var(--tw-bg-opacity));
|
2394
2414
|
}
|
2395
2415
|
.disabled\:bg-primary-5:disabled {
|
2396
|
-
--tw-bg-opacity: 1
|
2397
|
-
background-color: rgb(255 232 244 / var(--tw-bg-opacity))
|
2416
|
+
--tw-bg-opacity: 1;
|
2417
|
+
background-color: rgb(255 232 244 / var(--tw-bg-opacity));
|
2398
2418
|
}
|
2399
2419
|
.disabled\:bg-grey-0:disabled {
|
2400
|
-
--tw-bg-opacity: 1
|
2401
|
-
background-color: rgb(247 247 250 / var(--tw-bg-opacity))
|
2420
|
+
--tw-bg-opacity: 1;
|
2421
|
+
background-color: rgb(247 247 250 / var(--tw-bg-opacity));
|
2402
2422
|
}
|
2403
2423
|
.disabled\:bg-transparent:disabled {
|
2404
|
-
background-color: transparent
|
2424
|
+
background-color: transparent;
|
2405
2425
|
}
|
2406
2426
|
.disabled\:text-grey-40:disabled {
|
2407
|
-
--tw-text-opacity: 1
|
2408
|
-
color: rgb(150 150 160 / var(--tw-text-opacity))
|
2427
|
+
--tw-text-opacity: 1;
|
2428
|
+
color: rgb(150 150 160 / var(--tw-text-opacity));
|
2409
2429
|
}
|
2410
2430
|
.disabled\:text-primary-40:disabled {
|
2411
|
-
--tw-text-opacity: 1
|
2412
|
-
color: rgb(255 141 176 / var(--tw-text-opacity))
|
2431
|
+
--tw-text-opacity: 1;
|
2432
|
+
color: rgb(255 141 176 / var(--tw-text-opacity));
|
2413
2433
|
}
|
2414
2434
|
.disabled\:text-grey-30:disabled {
|
2415
|
-
--tw-text-opacity: 1
|
2416
|
-
color: rgb(180 180 187 / var(--tw-text-opacity))
|
2435
|
+
--tw-text-opacity: 1;
|
2436
|
+
color: rgb(180 180 187 / var(--tw-text-opacity));
|
2417
2437
|
}
|
2418
2438
|
.disabled\:text-grey-20:disabled {
|
2419
|
-
--tw-text-opacity: 1
|
2420
|
-
color: rgb(210 210 214 / var(--tw-text-opacity))
|
2439
|
+
--tw-text-opacity: 1;
|
2440
|
+
color: rgb(210 210 214 / var(--tw-text-opacity));
|
2421
2441
|
}
|
2422
2442
|
.disabled\:ring-grey-20:disabled {
|
2423
|
-
--tw-ring-opacity: 1
|
2424
|
-
--tw-ring-color: rgb(210 210 214 / var(--tw-ring-opacity))
|
2443
|
+
--tw-ring-opacity: 1;
|
2444
|
+
--tw-ring-color: rgb(210 210 214 / var(--tw-ring-opacity));
|
2425
2445
|
}
|
2426
2446
|
.group:last-child .group-last\:border-b-0 {
|
2427
|
-
border-bottom-width: 0px
|
2447
|
+
border-bottom-width: 0px;
|
2428
2448
|
}
|
2429
2449
|
.group:hover .group-hover\:visible {
|
2430
|
-
visibility: visible
|
2450
|
+
visibility: visible;
|
2431
2451
|
}
|
2432
2452
|
.group:hover .group-hover\:bg-grey-0 {
|
2433
|
-
--tw-bg-opacity: 1
|
2434
|
-
background-color: rgb(247 247 250 / var(--tw-bg-opacity))
|
2453
|
+
--tw-bg-opacity: 1;
|
2454
|
+
background-color: rgb(247 247 250 / var(--tw-bg-opacity));
|
2435
2455
|
}
|
2436
2456
|
.peer\/switch:checked~.peer-checked\/switch\:left-1 {
|
2437
|
-
left: 2px
|
2457
|
+
left: 2px;
|
2438
2458
|
}
|
2439
2459
|
.peer\/switch:checked~.peer-checked\/switch\:translate-x-5 {
|
2440
|
-
--tw-translate-x: 16px
|
2441
|
-
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
|
2460
|
+
--tw-translate-x: 16px;
|
2461
|
+
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
2442
2462
|
}
|
2443
2463
|
.peer:checked~.peer-checked\:border-navyBlue-100 {
|
2444
|
-
--tw-border-opacity: 1
|
2445
|
-
border-color: rgb(48 55 94 / var(--tw-border-opacity))
|
2464
|
+
--tw-border-opacity: 1;
|
2465
|
+
border-color: rgb(48 55 94 / var(--tw-border-opacity));
|
2446
2466
|
}
|
2447
2467
|
.peer:checked~.peer-checked\:text-white {
|
2448
|
-
--tw-text-opacity: 1
|
2449
|
-
color: rgb(255 255 255 / var(--tw-text-opacity))
|
2468
|
+
--tw-text-opacity: 1;
|
2469
|
+
color: rgb(255 255 255 / var(--tw-text-opacity));
|
2450
2470
|
}
|
2451
2471
|
.peer:checked~.peer-checked\:text-grey-30 {
|
2452
|
-
--tw-text-opacity: 1
|
2453
|
-
color: rgb(180 180 187 / var(--tw-text-opacity))
|
2472
|
+
--tw-text-opacity: 1;
|
2473
|
+
color: rgb(180 180 187 / var(--tw-text-opacity));
|
2454
2474
|
}
|
2455
2475
|
.peer:hover~.peer-hover\:border-grey-50 {
|
2456
|
-
--tw-border-opacity: 1
|
2457
|
-
border-color: rgb(120 120 133 / var(--tw-border-opacity))
|
2476
|
+
--tw-border-opacity: 1;
|
2477
|
+
border-color: rgb(120 120 133 / var(--tw-border-opacity));
|
2458
2478
|
}
|
2459
2479
|
.peer:focus~.peer-focus\:border-info-70 {
|
2460
|
-
--tw-border-opacity: 1
|
2461
|
-
border-color: rgb(3 153 227 / var(--tw-border-opacity))
|
2480
|
+
--tw-border-opacity: 1;
|
2481
|
+
border-color: rgb(3 153 227 / var(--tw-border-opacity));
|
2462
2482
|
}
|
2463
2483
|
.peer\/switch:disabled~.peer-disabled\/switch\:bg-grey-0 {
|
2464
|
-
--tw-bg-opacity: 1
|
2465
|
-
background-color: rgb(247 247 250 / var(--tw-bg-opacity))
|
2484
|
+
--tw-bg-opacity: 1;
|
2485
|
+
background-color: rgb(247 247 250 / var(--tw-bg-opacity));
|
2466
2486
|
}
|
2467
2487
|
.children\:inline-block>* {
|
2468
|
-
display: inline-block
|
2488
|
+
display: inline-block;
|
2469
2489
|
}
|
2470
2490
|
.children\:border-grey-10>* {
|
2471
|
-
--tw-border-opacity: 1
|
2472
|
-
border-color: rgb(225 225 227 / var(--tw-border-opacity))
|
2491
|
+
--tw-border-opacity: 1;
|
2492
|
+
border-color: rgb(225 225 227 / var(--tw-border-opacity));
|
2473
2493
|
}
|
2474
2494
|
.children\:last\:border-b-0:last-child>* {
|
2475
|
-
border-bottom-width: 0px
|
2495
|
+
border-bottom-width: 0px;
|
2476
2496
|
}
|
2477
2497
|
.\[\&\>path\]\:stroke-transparent>path {
|
2478
|
-
stroke: transparent
|
2498
|
+
stroke: transparent;
|
2479
2499
|
}
|
2480
2500
|
.peer:checked~.peer-checked\:\[\&\>path\]\:stroke-white>path {
|
2481
|
-
stroke: white
|
2501
|
+
stroke: white;
|
2482
2502
|
}
|
2483
2503
|
.peer:checked~.peer-checked\:\[\&\>path\]\:stroke-grey-30>path {
|
2484
|
-
stroke: #b4b4bb
|
2504
|
+
stroke: #b4b4bb;
|
2485
2505
|
}
|
2486
2506
|
.\[\&\>\*\:not\(\:first-child\)\]\:-ml-3>*:not(:first-child) {
|
2487
|
-
margin-left: -8px
|
2507
|
+
margin-left: -8px;
|
2488
2508
|
}
|
2489
2509
|
.\[\&\>div\:first-child\]\:px-5>div:first-child {
|
2490
|
-
padding-left: 16px
|
2491
|
-
padding-right: 16px
|
2510
|
+
padding-left: 16px;
|
2511
|
+
padding-right: 16px;
|
2492
2512
|
}
|