1mpacto-react-ui 2.0.15 → 2.0.17
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/assets/_typography.scss +0 -858
- package/dist/assets/core.css +1 -1
- package/dist/assets/fontfamily.css +1 -1
- package/dist/assets/style.css +1 -1
- package/dist/components/Alert/index.cjs +1 -0
- package/dist/components/Alert/index.mjs +220 -0
- package/dist/components/Alert/style.module.scss.cjs +1 -0
- package/dist/components/Alert/style.module.scss.mjs +14 -0
- package/dist/components/Badges/Badges.cjs +2 -0
- package/dist/components/Badges/Badges.config.cjs +1 -0
- package/dist/components/Badges/Badges.config.mjs +47 -0
- package/dist/components/Badges/Badges.mjs +29 -0
- package/dist/components/Badges/style.module.scss.cjs +1 -0
- package/dist/components/Badges/style.module.scss.mjs +40 -0
- package/dist/components/Breadcrumbs/Breadcrumbs.cjs +3 -0
- package/dist/components/Breadcrumbs/Breadcrumbs.config.cjs +1 -0
- package/dist/components/Breadcrumbs/Breadcrumbs.config.mjs +16 -0
- package/dist/components/Breadcrumbs/Breadcrumbs.mjs +67 -0
- package/dist/components/Breadcrumbs/style.module.scss.cjs +1 -0
- package/dist/components/Breadcrumbs/style.module.scss.mjs +16 -0
- package/dist/components/Button/Button.cjs +12 -0
- package/dist/components/Button/Button.config.cjs +1 -0
- package/dist/components/Button/Button.config.mjs +75 -0
- package/dist/components/Button/Button.mjs +75 -0
- package/dist/components/Button/style.module.scss.cjs +1 -0
- package/dist/components/Button/style.module.scss.mjs +58 -0
- package/dist/components/ButtonIcon/ButtonIcon.cjs +12 -0
- package/dist/components/ButtonIcon/ButtonIcon.config.cjs +1 -0
- package/dist/components/ButtonIcon/ButtonIcon.config.mjs +68 -0
- package/dist/components/ButtonIcon/ButtonIcon.mjs +65 -0
- package/dist/components/ButtonIcon/style.module.scss.cjs +1 -0
- package/dist/components/ButtonIcon/style.module.scss.mjs +51 -0
- package/dist/components/ButtonPopover/ButtonPopover.cjs +1 -0
- package/dist/components/ButtonPopover/ButtonPopover.mjs +84 -0
- package/dist/components/ButtonPopover/style.module.scss.cjs +1 -0
- package/dist/components/ButtonPopover/style.module.scss.mjs +10 -0
- package/dist/components/Calendar/Calendar.cjs +1 -0
- package/dist/components/Calendar/Calendar.mjs +199 -0
- package/dist/components/Calendar/CalendarButton.cjs +1 -0
- package/dist/components/Calendar/CalendarButton.mjs +18 -0
- package/dist/components/Calendar/CalendarCell.cjs +1 -0
- package/dist/components/Calendar/CalendarCell.mjs +26 -0
- package/dist/components/Calendar/CalendarMonth.cjs +1 -0
- package/dist/components/Calendar/CalendarMonth.mjs +74 -0
- package/dist/components/Calendar/CalendarRange.cjs +1 -0
- package/dist/components/Calendar/CalendarRange.mjs +140 -0
- package/dist/components/Calendar/CalendarYear.cjs +3 -0
- package/dist/components/Calendar/CalendarYear.mjs +74 -0
- package/dist/components/Calendar/style.module.scss.cjs +1 -0
- package/dist/components/Calendar/style.module.scss.mjs +36 -0
- package/dist/components/Chart/DoughnutChart.cjs +1 -0
- package/dist/components/Chart/DoughnutChart.mjs +173 -0
- package/dist/components/Chart/GradientBarChart.cjs +1 -0
- package/dist/components/Chart/GradientBarChart.mjs +157 -0
- package/dist/components/Chart/GradientLineChart.cjs +1 -0
- package/dist/components/Chart/GradientLineChart.mjs +143 -0
- package/dist/components/Chart/LineChart.cjs +1 -0
- package/dist/components/Chart/LineChart.mjs +158 -0
- package/dist/components/Chips/Chips.cjs +3 -0
- package/dist/components/Chips/Chips.config.cjs +1 -0
- package/dist/components/Chips/Chips.config.mjs +35 -0
- package/dist/components/Chips/Chips.mjs +37 -0
- package/dist/components/Chips/style.module.scss.cjs +1 -0
- package/dist/components/Chips/style.module.scss.mjs +14 -0
- package/dist/components/Collapse/Collapse.cjs +1 -0
- package/dist/components/Collapse/Collapse.mjs +35 -0
- package/dist/components/Collapse/CollapseV2.cjs +1 -0
- package/dist/components/Collapse/CollapseV2.mjs +30 -0
- package/dist/components/Collapse/style.module.scss.cjs +1 -0
- package/dist/components/Collapse/style.module.scss.mjs +7 -0
- package/dist/components/DatePicker/DatePicker.cjs +1 -0
- package/dist/components/DatePicker/DatePicker.mjs +125 -0
- package/dist/components/DatePicker/DateRangePicker.cjs +1 -0
- package/dist/components/DatePicker/DateRangePicker.mjs +112 -0
- package/dist/components/DatePicker/FilterDate.cjs +1 -0
- package/dist/components/DatePicker/FilterDate.mjs +248 -0
- package/dist/components/DatePicker/MonthYearPicker.cjs +1 -0
- package/dist/components/DatePicker/MonthYearPicker.mjs +83 -0
- package/dist/components/ErrorMessage/ErrorMessage.cjs +1 -0
- package/dist/components/ErrorMessage/ErrorMessage.config.cjs +1 -0
- package/dist/components/ErrorMessage/ErrorMessage.config.mjs +11 -0
- package/dist/components/ErrorMessage/ErrorMessage.mjs +6 -0
- package/dist/components/ErrorMessage/style.module.scss.cjs +1 -0
- package/dist/components/ErrorMessage/style.module.scss.mjs +8 -0
- package/dist/components/FilterContainer/FilterContainer.cjs +1 -0
- package/dist/components/FilterContainer/FilterContainer.mjs +63 -0
- package/dist/components/Input/InputFloatingInner.cjs +5 -0
- package/dist/components/Input/InputFloatingInner.config.cjs +1 -0
- package/dist/components/Input/InputFloatingInner.config.mjs +11 -0
- package/dist/components/Input/InputFloatingInner.mjs +65 -0
- package/dist/components/Input/InputFloatingInner.module.scss.cjs +1 -0
- package/dist/components/Input/InputFloatingInner.module.scss.mjs +20 -0
- package/dist/components/Input/InputInnerLabel.cjs +6 -0
- package/dist/components/Input/InputInnerLabel.config.cjs +1 -0
- package/dist/components/Input/InputInnerLabel.config.mjs +10 -0
- package/dist/components/Input/InputInnerLabel.mjs +78 -0
- package/dist/components/Input/InputInnerLabel.module.scss.cjs +1 -0
- package/dist/components/Input/InputInnerLabel.module.scss.mjs +20 -0
- package/dist/components/Input/InputNative.cjs +5 -0
- package/dist/components/Input/InputNative.config.cjs +1 -0
- package/dist/components/Input/InputNative.config.mjs +11 -0
- package/dist/components/Input/InputNative.mjs +58 -0
- package/dist/components/Input/InputNative.module.scss.cjs +1 -0
- package/dist/components/Input/InputNative.module.scss.mjs +18 -0
- package/dist/components/Input/InputReguler.cjs +5 -0
- package/dist/components/Input/InputReguler.config.cjs +1 -0
- package/dist/components/Input/InputReguler.config.mjs +11 -0
- package/dist/components/Input/InputReguler.mjs +79 -0
- package/dist/components/Input/InputReguler.module.scss.cjs +1 -0
- package/dist/components/Input/InputReguler.module.scss.mjs +24 -0
- package/dist/components/Modal/ModalDialog.cjs +1 -0
- package/dist/components/Modal/ModalDialog.config.cjs +1 -0
- package/dist/components/Modal/ModalDialog.config.mjs +12 -0
- package/dist/components/Modal/ModalDialog.mjs +44 -0
- package/dist/components/Modal/style.module.scss.cjs +1 -0
- package/dist/components/Modal/style.module.scss.mjs +14 -0
- package/dist/components/NumberFormat/NumberFormat.cjs +1 -0
- package/dist/components/NumberFormat/NumberFormat.mjs +33 -0
- package/dist/components/Pagination/Pagination.cjs +2 -0
- package/dist/components/Pagination/Pagination.config.cjs +1 -0
- package/dist/components/Pagination/Pagination.config.mjs +25 -0
- package/dist/components/Pagination/Pagination.mjs +231 -0
- package/dist/components/Pagination/style.module.scss.cjs +1 -0
- package/dist/components/Pagination/style.module.scss.mjs +20 -0
- package/dist/components/Popover/Popover.cjs +1 -0
- package/dist/components/Popover/Popover.mjs +78 -0
- package/dist/components/Popover/style.module.scss.cjs +1 -0
- package/dist/components/Popover/style.module.scss.mjs +7 -0
- package/dist/components/PortalComponent/PortalComponent.cjs +1 -0
- package/dist/components/PortalComponent/PortalComponent.mjs +18 -0
- package/dist/components/RadioCheckbox/CheckboxTable.cjs +1 -0
- package/dist/components/RadioCheckbox/CheckboxTable.mjs +27 -0
- package/dist/components/RadioCheckbox/RadioCheckbox.cjs +3 -0
- package/dist/components/RadioCheckbox/RadioCheckbox.config.cjs +1 -0
- package/dist/components/RadioCheckbox/RadioCheckbox.config.mjs +31 -0
- package/dist/components/RadioCheckbox/RadioCheckbox.mjs +84 -0
- package/dist/components/RadioCheckbox/RadioCheckbox.module.scss.cjs +1 -0
- package/dist/components/RadioCheckbox/RadioCheckbox.module.scss.mjs +26 -0
- package/dist/components/RadioCheckbox/RadioCheckboxLabel.cjs +4 -0
- package/dist/components/RadioCheckbox/RadioCheckboxLabel.config.cjs +1 -0
- package/dist/components/RadioCheckbox/RadioCheckboxLabel.config.mjs +20 -0
- package/dist/components/RadioCheckbox/RadioCheckboxLabel.mjs +55 -0
- package/dist/components/RadioCheckbox/RadioCheckboxLabel.module.scss.cjs +1 -0
- package/dist/components/RadioCheckbox/RadioCheckboxLabel.module.scss.mjs +19 -0
- package/dist/components/SelectDropdownContainer/SelectDropdownContainer.cjs +1 -0
- package/dist/components/SelectDropdownContainer/SelectDropdownContainer.config.cjs +1 -0
- package/dist/components/SelectDropdownContainer/SelectDropdownContainer.config.mjs +27 -0
- package/dist/components/SelectDropdownContainer/SelectDropdownContainer.mjs +150 -0
- package/dist/components/SelectDropdownContainer/SelectDropdownContainer.module.scss.cjs +1 -0
- package/dist/components/SelectDropdownContainer/SelectDropdownContainer.module.scss.mjs +10 -0
- package/dist/components/SelectDropdownContainer/styleConfig.cjs +1 -0
- package/dist/components/SelectDropdownContainer/styleConfig.mjs +277 -0
- package/dist/components/Sidebar/ItemSidebar.cjs +8 -0
- package/dist/components/Sidebar/ItemSidebar.config.cjs +1 -0
- package/dist/components/Sidebar/ItemSidebar.config.mjs +42 -0
- package/dist/components/Sidebar/ItemSidebar.mjs +122 -0
- package/dist/components/Sidebar/Sidebar.cjs +1 -0
- package/dist/components/Sidebar/Sidebar.config.cjs +1 -0
- package/dist/components/Sidebar/Sidebar.config.mjs +25 -0
- package/dist/components/Sidebar/Sidebar.mjs +136 -0
- package/dist/components/Sidebar/Sidebar.module.scss.cjs +1 -0
- package/dist/components/Sidebar/Sidebar.module.scss.mjs +26 -0
- package/dist/components/Sidebar/itemSidebar.module.scss.cjs +1 -0
- package/dist/components/Sidebar/itemSidebar.module.scss.mjs +31 -0
- package/dist/components/Step/Step.cjs +5 -0
- package/dist/components/Step/Step.mjs +85 -0
- package/dist/components/Step/Step.module.scss.cjs +1 -0
- package/dist/components/Step/Step.module.scss.mjs +17 -0
- package/dist/components/Step/StepIndicator.cjs +4 -0
- package/dist/components/Step/StepIndicator.mjs +65 -0
- package/dist/components/Step/StepIndicator.module.scss.cjs +1 -0
- package/dist/components/Step/StepIndicator.module.scss.mjs +16 -0
- package/dist/components/Switch/Switch.cjs +1 -0
- package/dist/components/Switch/Switch.config.cjs +1 -0
- package/dist/components/Switch/Switch.config.mjs +28 -0
- package/dist/components/Switch/Switch.mjs +53 -0
- package/dist/components/Switch/style.module.scss.cjs +1 -0
- package/dist/components/Switch/style.module.scss.mjs +23 -0
- package/dist/components/TPublish/TPublish.cjs +1 -0
- package/dist/components/TPublish/TPublish.mjs +5 -0
- package/dist/components/Table/Table.cjs +3 -0
- package/dist/components/Table/Table.config.cjs +1 -0
- package/dist/components/Table/Table.config.mjs +69 -0
- package/dist/components/Table/Table.mjs +402 -0
- package/dist/components/Table/Table.module.scss.cjs +1 -0
- package/dist/components/Table/Table.module.scss.mjs +19 -0
- package/dist/components/Table/TableSubMobile.cjs +1 -0
- package/dist/components/Table/TableSubMobile.mjs +37 -0
- package/dist/components/Table/TableSubMobile.module.scss.cjs +1 -0
- package/dist/components/Table/TableSubMobile.module.scss.mjs +6 -0
- package/dist/components/Tabs/TabPanel.cjs +1 -0
- package/dist/components/Tabs/TabPanel.mjs +14 -0
- package/dist/components/Tabs/Tabs.cjs +8 -0
- package/dist/components/Tabs/Tabs.config.cjs +1 -0
- package/dist/components/Tabs/Tabs.config.mjs +33 -0
- package/dist/components/Tabs/Tabs.mjs +112 -0
- package/dist/components/Tabs/style.module.scss.cjs +1 -0
- package/dist/components/Tabs/style.module.scss.mjs +30 -0
- package/dist/components/Text/Text.cjs +5 -0
- package/dist/components/Text/Text.mjs +39 -0
- package/dist/components/TextEditor/TextEditor.cjs +1 -0
- package/dist/components/TextEditor/TextEditor.mjs +9 -0
- package/dist/components/TextEditor/style.module.scss.cjs +1 -0
- package/dist/components/TextEditor/style.module.scss.mjs +7 -0
- package/dist/components/Textarea/Textarea.cjs +7 -0
- package/dist/components/Textarea/Textarea.config.cjs +1 -0
- package/dist/components/Textarea/Textarea.config.mjs +33 -0
- package/dist/components/Textarea/Textarea.mjs +87 -0
- package/dist/components/Textarea/TextareaFloatingInner.cjs +6 -0
- package/dist/components/Textarea/TextareaFloatingInner.config.cjs +1 -0
- package/dist/components/Textarea/TextareaFloatingInner.config.mjs +9 -0
- package/dist/components/Textarea/TextareaFloatingInner.mjs +101 -0
- package/dist/components/Textarea/TextareaFloatingInner.module.scss.cjs +1 -0
- package/dist/components/Textarea/TextareaFloatingInner.module.scss.mjs +17 -0
- package/dist/components/Textarea/TextareaInnerLabel.cjs +6 -0
- package/dist/components/Textarea/TextareaInnerLabel.config.cjs +1 -0
- package/dist/components/Textarea/TextareaInnerLabel.config.mjs +10 -0
- package/dist/components/Textarea/TextareaInnerLabel.mjs +87 -0
- package/dist/components/Textarea/TextareaInnerLabel.module.scss.cjs +1 -0
- package/dist/components/Textarea/TextareaInnerLabel.module.scss.mjs +17 -0
- package/dist/components/Textarea/style.module.scss.cjs +1 -0
- package/dist/components/Textarea/style.module.scss.mjs +25 -0
- package/dist/components/TimeRange/TimeRange.cjs +1 -0
- package/dist/components/TimeRange/TimeRange.mjs +187 -0
- package/dist/components/TimeRange/TimeRange.module.scss.cjs +1 -0
- package/dist/components/TimeRange/TimeRange.module.scss.mjs +23 -0
- package/dist/components/Timeline/Timeline.cjs +1 -0
- package/dist/components/Timeline/Timeline.mjs +12 -0
- package/dist/components/Timeline/style.module.scss.cjs +1 -0
- package/dist/components/Timeline/style.module.scss.mjs +14 -0
- package/dist/components/Tooltip/Tooltip.cjs +1 -0
- package/dist/components/Tooltip/Tooltip.mjs +77 -0
- package/dist/components/Tooltip/Tooltip.module.scss.cjs +1 -0
- package/dist/components/Tooltip/Tooltip.module.scss.mjs +8 -0
- package/dist/components/TruncateComponent/TruncateComponent.cjs +1 -0
- package/dist/components/TruncateComponent/TruncateComponent.mjs +83 -0
- package/dist/components/Upload/UploadFile.cjs +1 -0
- package/dist/components/Upload/UploadFile.mjs +94 -0
- package/dist/components/Upload/UploadFile.module.scss.cjs +1 -0
- package/dist/components/Upload/UploadFile.module.scss.mjs +6 -0
- package/dist/components/Upload/UploadImage.cjs +12 -0
- package/dist/components/Upload/UploadImage.mjs +162 -0
- package/dist/components/Upload/UploadImage.module.scss.cjs +1 -0
- package/dist/components/Upload/UploadImage.module.scss.mjs +14 -0
- package/dist/components/Upload/UploadMultipleFile.cjs +1 -0
- package/dist/components/Upload/UploadMultipleFile.mjs +85 -0
- package/dist/components/Upload/UploadMultipleFile.module.scss.cjs +1 -0
- package/dist/components/Upload/UploadMultipleFile.module.scss.mjs +14 -0
- package/dist/components/Virtualization/ListVirtualization.cjs +1 -0
- package/dist/components/Virtualization/ListVirtualization.mjs +82 -0
- package/dist/components/Virtualization/TableVirtualization.cjs +1 -0
- package/dist/components/Virtualization/TableVirtualization.mjs +84 -0
- package/dist/config/bigNumber/index.cjs +1 -0
- package/dist/config/bigNumber/index.mjs +15 -0
- package/dist/config/components/borderRadius.cjs +1 -0
- package/dist/config/components/borderRadius.mjs +14 -0
- package/dist/config/components/font.cjs +1 -0
- package/dist/config/components/font.mjs +8 -0
- package/dist/config/components/gap.cjs +1 -0
- package/dist/config/components/gap.mjs +110 -0
- package/dist/config/components/tinymce.cjs +28 -0
- package/dist/config/components/tinymce.mjs +81 -0
- package/dist/config/components/typography.cjs +1 -0
- package/dist/config/components/typography.mjs +83 -0
- package/dist/config/resources/index.cjs +1 -0
- package/dist/config/resources/index.mjs +4 -0
- package/dist/config/tailwind/colors.cjs +1 -0
- package/dist/config/tailwind/colors.mjs +291 -0
- package/dist/config/tailwind/nativeScreen.cjs +1 -0
- package/dist/config/tailwind/nativeScreen.mjs +11 -0
- package/dist/config/tailwind/screen.cjs +1 -0
- package/dist/config/tailwind/screen.mjs +11 -0
- package/dist/config/tailwind/typography.cjs +1 -0
- package/dist/config/tailwind/typography.mjs +158 -0
- package/dist/hooks/useAsyncDebounce.cjs +1 -0
- package/dist/hooks/useAsyncDebounce.mjs +21 -0
- package/dist/hooks/useCombinedResizeObserver.cjs +1 -0
- package/dist/hooks/useCombinedResizeObserver.mjs +48 -0
- package/dist/hooks/useCountdown.cjs +1 -0
- package/dist/hooks/useCountdown.mjs +38 -0
- package/dist/hooks/useDeepCompareEffect.cjs +1 -0
- package/dist/hooks/useDeepCompareEffect.mjs +14 -0
- package/dist/hooks/useElementOrWindowMediaQuery.cjs +1 -0
- package/dist/hooks/useElementOrWindowMediaQuery.mjs +23 -0
- package/dist/hooks/useEventListener.cjs +1 -0
- package/dist/hooks/useEventListener.mjs +19 -0
- package/dist/hooks/useMasonry.cjs +1 -0
- package/dist/hooks/useMasonry.mjs +53 -0
- package/dist/hooks/useMergeRefs.cjs +1 -0
- package/dist/hooks/useMergeRefs.mjs +29 -0
- package/dist/hooks/useOtpInput.cjs +1 -0
- package/dist/hooks/useOtpInput.mjs +115 -0
- package/dist/hooks/useStateRef.cjs +1 -0
- package/dist/hooks/useStateRef.mjs +10 -0
- package/dist/index.cjs +1 -247
- package/dist/index.mjs +207 -51682
- package/dist/package.json.cjs +1 -0
- package/dist/package.json.d.ts +5 -7
- package/dist/package.json.mjs +7 -0
- package/dist/public/assets/icons/arrow-narrow-down.svg.cjs +1 -0
- package/dist/public/assets/icons/arrow-narrow-down.svg.mjs +4 -0
- package/dist/src/config/resources/index.d.ts +2 -0
- package/dist/utils/axiosBigNumber.cjs +1 -0
- package/dist/utils/axiosBigNumber.mjs +32 -0
- package/dist/utils/common.cjs +1 -0
- package/dist/utils/common.mjs +264 -0
- package/dist/utils/cookies.cjs +1 -0
- package/dist/utils/cookies.mjs +48 -0
- package/dist/utils/formatBigNumber.cjs +1 -0
- package/dist/utils/formatBigNumber.mjs +39 -0
- package/dist/utils/yup.cjs +1 -0
- package/dist/utils/yup.mjs +78 -0
- package/package.json +5 -7
- package/dist/assets/colors.css +0 -284
- package/dist/assets/fonts/Andale-Mono.ttf +0 -0
- package/dist/assets/fonts/Arial-Black.ttf +0 -0
- package/dist/assets/fonts/Arial-Regular.ttf +0 -0
- package/dist/assets/fonts/Book-Antiqua.ttf +0 -0
- package/dist/assets/fonts/Comic-Sans-MS.ttf +0 -0
- package/dist/assets/fonts/Courier-New.ttf +0 -0
- package/dist/assets/fonts/Georgia.ttf +0 -0
- package/dist/assets/fonts/Helvetica.ttf +0 -0
- package/dist/assets/fonts/Impact.ttf +0 -0
- package/dist/assets/fonts/Inter-Regular.ttf +0 -0
- package/dist/assets/fonts/Lato-100.ttf +0 -0
- package/dist/assets/fonts/Lato-200.ttf +0 -0
- package/dist/assets/fonts/Lato-300.ttf +0 -0
- package/dist/assets/fonts/Lato-400.ttf +0 -0
- package/dist/assets/fonts/Lato-500.ttf +0 -0
- package/dist/assets/fonts/Lato-600.ttf +0 -0
- package/dist/assets/fonts/Lato-700.ttf +0 -0
- package/dist/assets/fonts/PlusJakartaSans-Italic.ttf +0 -0
- package/dist/assets/fonts/PlusJakartaSans.ttf +0 -0
- package/dist/assets/fonts/Tahoma.ttf +0 -0
- package/dist/assets/fonts/Terminal.ttf +0 -0
- package/dist/assets/fonts/Times-New-Roman.ttf +0 -0
- package/dist/assets/fonts/Trebuchet-MS.ttf +0 -0
- package/dist/assets/fonts/Verdana.ttf +0 -0
- package/dist/assets/fonts/Webdings.ttf +0 -0
- package/dist/assets/fonts/Wingding.ttf +0 -0
- package/dist/assets/screen.css +0 -8
- package/dist/assets/typography.css +0 -236
- package/dist/tinymce/CHANGELOG.md +0 -3910
- package/dist/tinymce/js/tinymce/icons/default/icons.min.js +0 -1
- package/dist/tinymce/js/tinymce/langs/README.md +0 -3
- package/dist/tinymce/js/tinymce/license.md +0 -6
- package/dist/tinymce/js/tinymce/models/dom/model.min.js +0 -1
- package/dist/tinymce/js/tinymce/notices.txt +0 -21
- package/dist/tinymce/js/tinymce/plugins/accordion/plugin.min.js +0 -1
- package/dist/tinymce/js/tinymce/plugins/advlist/plugin.min.js +0 -1
- package/dist/tinymce/js/tinymce/plugins/anchor/plugin.min.js +0 -1
- package/dist/tinymce/js/tinymce/plugins/autolink/plugin.min.js +0 -1
- package/dist/tinymce/js/tinymce/plugins/autoresize/plugin.min.js +0 -1
- package/dist/tinymce/js/tinymce/plugins/autosave/plugin.min.js +0 -1
- package/dist/tinymce/js/tinymce/plugins/charmap/plugin.min.js +0 -1
- package/dist/tinymce/js/tinymce/plugins/code/plugin.min.js +0 -1
- package/dist/tinymce/js/tinymce/plugins/codesample/plugin.min.js +0 -9
- package/dist/tinymce/js/tinymce/plugins/directionality/plugin.min.js +0 -1
- package/dist/tinymce/js/tinymce/plugins/emoticons/js/emojiimages.js +0 -1
- package/dist/tinymce/js/tinymce/plugins/emoticons/js/emojiimages.min.js +0 -1
- package/dist/tinymce/js/tinymce/plugins/emoticons/js/emojis.js +0 -1
- package/dist/tinymce/js/tinymce/plugins/emoticons/js/emojis.min.js +0 -1
- package/dist/tinymce/js/tinymce/plugins/emoticons/plugin.min.js +0 -1
- package/dist/tinymce/js/tinymce/plugins/fullscreen/plugin.min.js +0 -1
- package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/ar.js +0 -93
- package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/bg-BG.js +0 -93
- package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/bg_BG.js +0 -93
- package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/ca.js +0 -93
- package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/cs.js +0 -93
- package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/da.js +0 -93
- package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/de.js +0 -93
- package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/el.js +0 -93
- package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/en.js +0 -93
- package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/es.js +0 -93
- package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/eu.js +0 -93
- package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/fa.js +0 -93
- package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/fi.js +0 -93
- package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/fr-FR.js +0 -93
- package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/fr_FR.js +0 -93
- package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/he-IL.js +0 -93
- package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/he_IL.js +0 -93
- package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/hi.js +0 -93
- package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/hr.js +0 -93
- package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/hu-HU.js +0 -93
- package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/hu_HU.js +0 -93
- package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/id.js +0 -93
- package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/it.js +0 -93
- package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/ja.js +0 -93
- package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/kk.js +0 -93
- package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/ko-KR.js +0 -93
- package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/ko_KR.js +0 -93
- package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/ms.js +0 -93
- package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/nb-NO.js +0 -93
- package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/nb_NO.js +0 -93
- package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/nl.js +0 -93
- package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/pl.js +0 -93
- package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/pt-BR.js +0 -93
- package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/pt-PT.js +0 -93
- package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/pt_BR.js +0 -93
- package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/pt_PT.js +0 -93
- package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/ro.js +0 -93
- package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/ru.js +0 -93
- package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/sk.js +0 -93
- package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/sl-SI.js +0 -93
- package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/sl_SI.js +0 -93
- package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/sv-SE.js +0 -93
- package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/sv_SE.js +0 -93
- package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/th-TH.js +0 -93
- package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/th_TH.js +0 -93
- package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/tr.js +0 -93
- package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/uk.js +0 -93
- package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/vi.js +0 -93
- package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/zh-CN.js +0 -87
- package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/zh-TW.js +0 -93
- package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/zh_CN.js +0 -87
- package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/zh_TW.js +0 -93
- package/dist/tinymce/js/tinymce/plugins/help/plugin.min.js +0 -1
- package/dist/tinymce/js/tinymce/plugins/image/plugin.min.js +0 -1
- package/dist/tinymce/js/tinymce/plugins/importcss/plugin.min.js +0 -1
- package/dist/tinymce/js/tinymce/plugins/insertdatetime/plugin.min.js +0 -1
- package/dist/tinymce/js/tinymce/plugins/link/plugin.min.js +0 -1
- package/dist/tinymce/js/tinymce/plugins/lists/plugin.min.js +0 -1
- package/dist/tinymce/js/tinymce/plugins/media/plugin.min.js +0 -1
- package/dist/tinymce/js/tinymce/plugins/nonbreaking/plugin.min.js +0 -1
- package/dist/tinymce/js/tinymce/plugins/pagebreak/plugin.min.js +0 -1
- package/dist/tinymce/js/tinymce/plugins/preview/plugin.min.js +0 -1
- package/dist/tinymce/js/tinymce/plugins/quickbars/plugin.min.js +0 -1
- package/dist/tinymce/js/tinymce/plugins/save/plugin.min.js +0 -1
- package/dist/tinymce/js/tinymce/plugins/searchreplace/plugin.min.js +0 -1
- package/dist/tinymce/js/tinymce/plugins/table/plugin.min.js +0 -1
- package/dist/tinymce/js/tinymce/plugins/visualblocks/plugin.min.js +0 -1
- package/dist/tinymce/js/tinymce/plugins/visualchars/plugin.min.js +0 -1
- package/dist/tinymce/js/tinymce/plugins/wordcount/plugin.min.js +0 -1
- package/dist/tinymce/js/tinymce/skins/content/dark/content.js +0 -10
- package/dist/tinymce/js/tinymce/skins/content/dark/content.min.css +0 -10
- package/dist/tinymce/js/tinymce/skins/content/default/content.js +0 -10
- package/dist/tinymce/js/tinymce/skins/content/default/content.min.css +0 -10
- package/dist/tinymce/js/tinymce/skins/content/document/content.js +0 -10
- package/dist/tinymce/js/tinymce/skins/content/document/content.min.css +0 -10
- package/dist/tinymce/js/tinymce/skins/content/tinymce-5/content.js +0 -10
- package/dist/tinymce/js/tinymce/skins/content/tinymce-5/content.min.css +0 -10
- package/dist/tinymce/js/tinymce/skins/content/tinymce-5-dark/content.js +0 -10
- package/dist/tinymce/js/tinymce/skins/content/tinymce-5-dark/content.min.css +0 -10
- package/dist/tinymce/js/tinymce/skins/content/writer/content.js +0 -10
- package/dist/tinymce/js/tinymce/skins/content/writer/content.min.css +0 -10
- package/dist/tinymce/js/tinymce/skins/ui/oxide/content.inline.js +0 -10
- package/dist/tinymce/js/tinymce/skins/ui/oxide/content.inline.min.css +0 -10
- package/dist/tinymce/js/tinymce/skins/ui/oxide/content.js +0 -10
- package/dist/tinymce/js/tinymce/skins/ui/oxide/content.min.css +0 -10
- package/dist/tinymce/js/tinymce/skins/ui/oxide/skin.js +0 -1
- package/dist/tinymce/js/tinymce/skins/ui/oxide/skin.min.css +0 -1
- package/dist/tinymce/js/tinymce/skins/ui/oxide/skin.shadowdom.js +0 -1
- package/dist/tinymce/js/tinymce/skins/ui/oxide/skin.shadowdom.min.css +0 -1
- package/dist/tinymce/js/tinymce/skins/ui/oxide-dark/content.inline.js +0 -10
- package/dist/tinymce/js/tinymce/skins/ui/oxide-dark/content.inline.min.css +0 -10
- package/dist/tinymce/js/tinymce/skins/ui/oxide-dark/content.js +0 -10
- package/dist/tinymce/js/tinymce/skins/ui/oxide-dark/content.min.css +0 -10
- package/dist/tinymce/js/tinymce/skins/ui/oxide-dark/skin.js +0 -1
- package/dist/tinymce/js/tinymce/skins/ui/oxide-dark/skin.min.css +0 -1
- package/dist/tinymce/js/tinymce/skins/ui/oxide-dark/skin.shadowdom.js +0 -1
- package/dist/tinymce/js/tinymce/skins/ui/oxide-dark/skin.shadowdom.min.css +0 -1
- package/dist/tinymce/js/tinymce/skins/ui/tinymce-5/content.inline.js +0 -10
- package/dist/tinymce/js/tinymce/skins/ui/tinymce-5/content.inline.min.css +0 -10
- package/dist/tinymce/js/tinymce/skins/ui/tinymce-5/content.js +0 -10
- package/dist/tinymce/js/tinymce/skins/ui/tinymce-5/content.min.css +0 -10
- package/dist/tinymce/js/tinymce/skins/ui/tinymce-5/skin.js +0 -1
- package/dist/tinymce/js/tinymce/skins/ui/tinymce-5/skin.min.css +0 -1
- package/dist/tinymce/js/tinymce/skins/ui/tinymce-5/skin.shadowdom.js +0 -1
- package/dist/tinymce/js/tinymce/skins/ui/tinymce-5/skin.shadowdom.min.css +0 -1
- package/dist/tinymce/js/tinymce/skins/ui/tinymce-5-dark/content.inline.js +0 -10
- package/dist/tinymce/js/tinymce/skins/ui/tinymce-5-dark/content.inline.min.css +0 -10
- package/dist/tinymce/js/tinymce/skins/ui/tinymce-5-dark/content.js +0 -10
- package/dist/tinymce/js/tinymce/skins/ui/tinymce-5-dark/content.min.css +0 -10
- package/dist/tinymce/js/tinymce/skins/ui/tinymce-5-dark/skin.js +0 -1
- package/dist/tinymce/js/tinymce/skins/ui/tinymce-5-dark/skin.min.css +0 -1
- package/dist/tinymce/js/tinymce/skins/ui/tinymce-5-dark/skin.shadowdom.js +0 -1
- package/dist/tinymce/js/tinymce/skins/ui/tinymce-5-dark/skin.shadowdom.min.css +0 -1
- package/dist/tinymce/js/tinymce/themes/silver/theme.min.js +0 -1
- package/dist/tinymce/js/tinymce/tinymce.d.ts +0 -3399
- package/dist/tinymce/js/tinymce/tinymce.min.js +0 -10
|
@@ -1,861 +1,3 @@
|
|
|
1
|
-
.text-payhere-h1 {
|
|
2
|
-
font-size: 60px;
|
|
3
|
-
line-height: 72px;
|
|
4
|
-
font-weight: 700;
|
|
5
|
-
}
|
|
6
|
-
@mixin text-payhere-h1() {
|
|
7
|
-
font-size: 60px;
|
|
8
|
-
line-height: 72px;
|
|
9
|
-
font-weight: 700;
|
|
10
|
-
}
|
|
11
|
-
|
|
12
|
-
.text-payhere-h2 {
|
|
13
|
-
font-size: 48px;
|
|
14
|
-
line-height: 58px;
|
|
15
|
-
font-weight: 700;
|
|
16
|
-
}
|
|
17
|
-
@mixin text-payhere-h2() {
|
|
18
|
-
font-size: 48px;
|
|
19
|
-
line-height: 58px;
|
|
20
|
-
font-weight: 700;
|
|
21
|
-
}
|
|
22
|
-
|
|
23
|
-
.text-payhere-h3 {
|
|
24
|
-
font-size: 40px;
|
|
25
|
-
line-height: 48px;
|
|
26
|
-
font-weight: 700;
|
|
27
|
-
}
|
|
28
|
-
@mixin text-payhere-h3() {
|
|
29
|
-
font-size: 40px;
|
|
30
|
-
line-height: 48px;
|
|
31
|
-
font-weight: 700;
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
.text-payhere-h4 {
|
|
35
|
-
font-size: 30px;
|
|
36
|
-
line-height: 38px;
|
|
37
|
-
font-weight: 700;
|
|
38
|
-
}
|
|
39
|
-
@mixin text-payhere-h4() {
|
|
40
|
-
font-size: 30px;
|
|
41
|
-
line-height: 38px;
|
|
42
|
-
font-weight: 700;
|
|
43
|
-
}
|
|
44
|
-
|
|
45
|
-
.text-payhere-h5 {
|
|
46
|
-
font-size: 28px;
|
|
47
|
-
line-height: 40px;
|
|
48
|
-
font-weight: 600;
|
|
49
|
-
}
|
|
50
|
-
@mixin text-payhere-h5() {
|
|
51
|
-
font-size: 28px;
|
|
52
|
-
line-height: 40px;
|
|
53
|
-
font-weight: 600;
|
|
54
|
-
}
|
|
55
|
-
|
|
56
|
-
.text-payhere-h6 {
|
|
57
|
-
font-size: 24px;
|
|
58
|
-
line-height: 30px;
|
|
59
|
-
font-weight: 600;
|
|
60
|
-
}
|
|
61
|
-
@mixin text-payhere-h6() {
|
|
62
|
-
font-size: 24px;
|
|
63
|
-
line-height: 30px;
|
|
64
|
-
font-weight: 600;
|
|
65
|
-
}
|
|
66
|
-
|
|
67
|
-
.text-payhere-body-lr {
|
|
68
|
-
font-size: 18px;
|
|
69
|
-
line-height: 26px;
|
|
70
|
-
font-weight: 400;
|
|
71
|
-
}
|
|
72
|
-
@mixin text-payhere-body-lr() {
|
|
73
|
-
font-size: 18px;
|
|
74
|
-
line-height: 26px;
|
|
75
|
-
font-weight: 400;
|
|
76
|
-
}
|
|
77
|
-
|
|
78
|
-
.text-payhere-body-lm {
|
|
79
|
-
font-size: 18px;
|
|
80
|
-
line-height: 26px;
|
|
81
|
-
font-weight: 500;
|
|
82
|
-
}
|
|
83
|
-
@mixin text-payhere-body-lm() {
|
|
84
|
-
font-size: 18px;
|
|
85
|
-
line-height: 26px;
|
|
86
|
-
font-weight: 500;
|
|
87
|
-
}
|
|
88
|
-
|
|
89
|
-
.text-payhere-body-ls {
|
|
90
|
-
font-size: 18px;
|
|
91
|
-
line-height: 26px;
|
|
92
|
-
font-weight: 600;
|
|
93
|
-
}
|
|
94
|
-
@mixin text-payhere-body-ls() {
|
|
95
|
-
font-size: 18px;
|
|
96
|
-
line-height: 26px;
|
|
97
|
-
font-weight: 600;
|
|
98
|
-
}
|
|
99
|
-
|
|
100
|
-
.text-payhere-body-lb {
|
|
101
|
-
font-size: 18px;
|
|
102
|
-
line-height: 26px;
|
|
103
|
-
font-weight: 700;
|
|
104
|
-
}
|
|
105
|
-
@mixin text-payhere-body-lb() {
|
|
106
|
-
font-size: 18px;
|
|
107
|
-
line-height: 26px;
|
|
108
|
-
font-weight: 700;
|
|
109
|
-
}
|
|
110
|
-
|
|
111
|
-
.text-payhere-body-mr {
|
|
112
|
-
font-size: 16px;
|
|
113
|
-
line-height: 24px;
|
|
114
|
-
font-weight: 400;
|
|
115
|
-
}
|
|
116
|
-
@mixin text-payhere-body-mr() {
|
|
117
|
-
font-size: 16px;
|
|
118
|
-
line-height: 24px;
|
|
119
|
-
font-weight: 400;
|
|
120
|
-
}
|
|
121
|
-
|
|
122
|
-
.text-payhere-body-mm {
|
|
123
|
-
font-size: 16px;
|
|
124
|
-
line-height: 24px;
|
|
125
|
-
font-weight: 500;
|
|
126
|
-
}
|
|
127
|
-
@mixin text-payhere-body-mm() {
|
|
128
|
-
font-size: 16px;
|
|
129
|
-
line-height: 24px;
|
|
130
|
-
font-weight: 500;
|
|
131
|
-
}
|
|
132
|
-
|
|
133
|
-
.text-payhere-body-ms {
|
|
134
|
-
font-size: 16px;
|
|
135
|
-
line-height: 24px;
|
|
136
|
-
font-weight: 600;
|
|
137
|
-
}
|
|
138
|
-
@mixin text-payhere-body-ms() {
|
|
139
|
-
font-size: 16px;
|
|
140
|
-
line-height: 24px;
|
|
141
|
-
font-weight: 600;
|
|
142
|
-
}
|
|
143
|
-
|
|
144
|
-
.text-payhere-body-mb {
|
|
145
|
-
font-size: 16px;
|
|
146
|
-
line-height: 24px;
|
|
147
|
-
font-weight: 700;
|
|
148
|
-
}
|
|
149
|
-
@mixin text-payhere-body-mb() {
|
|
150
|
-
font-size: 16px;
|
|
151
|
-
line-height: 24px;
|
|
152
|
-
font-weight: 700;
|
|
153
|
-
}
|
|
154
|
-
|
|
155
|
-
.text-payhere-label-r {
|
|
156
|
-
font-size: 15px;
|
|
157
|
-
line-height: 26px;
|
|
158
|
-
font-weight: 400;
|
|
159
|
-
}
|
|
160
|
-
@mixin text-payhere-label-r() {
|
|
161
|
-
font-size: 15px;
|
|
162
|
-
line-height: 26px;
|
|
163
|
-
font-weight: 400;
|
|
164
|
-
}
|
|
165
|
-
|
|
166
|
-
.text-payhere-label-m {
|
|
167
|
-
font-size: 15px;
|
|
168
|
-
line-height: 26px;
|
|
169
|
-
font-weight: 500;
|
|
170
|
-
}
|
|
171
|
-
@mixin text-payhere-label-m() {
|
|
172
|
-
font-size: 15px;
|
|
173
|
-
line-height: 26px;
|
|
174
|
-
font-weight: 500;
|
|
175
|
-
}
|
|
176
|
-
|
|
177
|
-
.text-payhere-label-sb {
|
|
178
|
-
font-size: 15px;
|
|
179
|
-
line-height: 26px;
|
|
180
|
-
font-weight: 600;
|
|
181
|
-
}
|
|
182
|
-
@mixin text-payhere-label-sb() {
|
|
183
|
-
font-size: 15px;
|
|
184
|
-
line-height: 26px;
|
|
185
|
-
font-weight: 600;
|
|
186
|
-
}
|
|
187
|
-
|
|
188
|
-
.text-payhere-label-b {
|
|
189
|
-
font-size: 15px;
|
|
190
|
-
line-height: 26px;
|
|
191
|
-
font-weight: 700;
|
|
192
|
-
}
|
|
193
|
-
@mixin text-payhere-label-b() {
|
|
194
|
-
font-size: 15px;
|
|
195
|
-
line-height: 26px;
|
|
196
|
-
font-weight: 700;
|
|
197
|
-
}
|
|
198
|
-
|
|
199
|
-
.text-payhere-body-sr {
|
|
200
|
-
font-size: 14px;
|
|
201
|
-
line-height: 22px;
|
|
202
|
-
font-weight: 400;
|
|
203
|
-
}
|
|
204
|
-
@mixin text-payhere-body-sr() {
|
|
205
|
-
font-size: 14px;
|
|
206
|
-
line-height: 22px;
|
|
207
|
-
font-weight: 400;
|
|
208
|
-
}
|
|
209
|
-
|
|
210
|
-
.text-payhere-body-sm {
|
|
211
|
-
font-size: 14px;
|
|
212
|
-
line-height: 22px;
|
|
213
|
-
font-weight: 500;
|
|
214
|
-
}
|
|
215
|
-
@mixin text-payhere-body-sm() {
|
|
216
|
-
font-size: 14px;
|
|
217
|
-
line-height: 22px;
|
|
218
|
-
font-weight: 500;
|
|
219
|
-
}
|
|
220
|
-
|
|
221
|
-
.text-payhere-body-smb {
|
|
222
|
-
font-size: 14px;
|
|
223
|
-
line-height: 22px;
|
|
224
|
-
font-weight: 600;
|
|
225
|
-
}
|
|
226
|
-
@mixin text-payhere-body-smb() {
|
|
227
|
-
font-size: 14px;
|
|
228
|
-
line-height: 22px;
|
|
229
|
-
font-weight: 600;
|
|
230
|
-
}
|
|
231
|
-
|
|
232
|
-
.text-payhere-body-sb {
|
|
233
|
-
font-size: 14px;
|
|
234
|
-
line-height: 22px;
|
|
235
|
-
font-weight: 700;
|
|
236
|
-
}
|
|
237
|
-
@mixin text-payhere-body-sb() {
|
|
238
|
-
font-size: 14px;
|
|
239
|
-
line-height: 22px;
|
|
240
|
-
font-weight: 700;
|
|
241
|
-
}
|
|
242
|
-
|
|
243
|
-
.text-payhere-body-esr {
|
|
244
|
-
font-size: 12px;
|
|
245
|
-
line-height: 20px;
|
|
246
|
-
font-weight: 400;
|
|
247
|
-
}
|
|
248
|
-
@mixin text-payhere-body-esr() {
|
|
249
|
-
font-size: 12px;
|
|
250
|
-
line-height: 20px;
|
|
251
|
-
font-weight: 400;
|
|
252
|
-
}
|
|
253
|
-
|
|
254
|
-
.text-payhere-body-esm {
|
|
255
|
-
font-size: 12px;
|
|
256
|
-
line-height: 20px;
|
|
257
|
-
font-weight: 500;
|
|
258
|
-
}
|
|
259
|
-
@mixin text-payhere-body-esm() {
|
|
260
|
-
font-size: 12px;
|
|
261
|
-
line-height: 20px;
|
|
262
|
-
font-weight: 500;
|
|
263
|
-
}
|
|
264
|
-
|
|
265
|
-
.text-payhere-body-esmb {
|
|
266
|
-
font-size: 12px;
|
|
267
|
-
line-height: 20px;
|
|
268
|
-
font-weight: 600;
|
|
269
|
-
}
|
|
270
|
-
@mixin text-payhere-body-esmb() {
|
|
271
|
-
font-size: 12px;
|
|
272
|
-
line-height: 20px;
|
|
273
|
-
font-weight: 600;
|
|
274
|
-
}
|
|
275
|
-
|
|
276
|
-
.text-payhere-body-esb {
|
|
277
|
-
font-size: 12px;
|
|
278
|
-
line-height: 20px;
|
|
279
|
-
font-weight: 700;
|
|
280
|
-
}
|
|
281
|
-
@mixin text-payhere-body-esb() {
|
|
282
|
-
font-size: 12px;
|
|
283
|
-
line-height: 20px;
|
|
284
|
-
font-weight: 700;
|
|
285
|
-
}
|
|
286
|
-
|
|
287
|
-
.text-laba-title-lb {
|
|
288
|
-
font-size: 36px;
|
|
289
|
-
line-height: 44px;
|
|
290
|
-
font-weight: 700;
|
|
291
|
-
}
|
|
292
|
-
@mixin text-laba-title-lb() {
|
|
293
|
-
font-size: 36px;
|
|
294
|
-
line-height: 44px;
|
|
295
|
-
font-weight: 700;
|
|
296
|
-
}
|
|
297
|
-
|
|
298
|
-
.text-laba-title-ls {
|
|
299
|
-
font-size: 36px;
|
|
300
|
-
line-height: 44px;
|
|
301
|
-
font-weight: 600;
|
|
302
|
-
}
|
|
303
|
-
@mixin text-laba-title-ls() {
|
|
304
|
-
font-size: 36px;
|
|
305
|
-
line-height: 44px;
|
|
306
|
-
font-weight: 600;
|
|
307
|
-
}
|
|
308
|
-
|
|
309
|
-
.text-laba-title-lr {
|
|
310
|
-
font-size: 36px;
|
|
311
|
-
line-height: 44px;
|
|
312
|
-
font-weight: 400;
|
|
313
|
-
}
|
|
314
|
-
@mixin text-laba-title-lr() {
|
|
315
|
-
font-size: 36px;
|
|
316
|
-
line-height: 44px;
|
|
317
|
-
font-weight: 400;
|
|
318
|
-
}
|
|
319
|
-
|
|
320
|
-
.text-laba-title-mb {
|
|
321
|
-
font-size: 32px;
|
|
322
|
-
line-height: 40px;
|
|
323
|
-
font-weight: 700;
|
|
324
|
-
}
|
|
325
|
-
@mixin text-laba-title-mb() {
|
|
326
|
-
font-size: 32px;
|
|
327
|
-
line-height: 40px;
|
|
328
|
-
font-weight: 700;
|
|
329
|
-
}
|
|
330
|
-
|
|
331
|
-
.text-laba-title-ms {
|
|
332
|
-
font-size: 32px;
|
|
333
|
-
line-height: 40px;
|
|
334
|
-
font-weight: 600;
|
|
335
|
-
}
|
|
336
|
-
@mixin text-laba-title-ms() {
|
|
337
|
-
font-size: 32px;
|
|
338
|
-
line-height: 40px;
|
|
339
|
-
font-weight: 600;
|
|
340
|
-
}
|
|
341
|
-
|
|
342
|
-
.text-laba-title-mr {
|
|
343
|
-
font-size: 32px;
|
|
344
|
-
line-height: 40px;
|
|
345
|
-
font-weight: 400;
|
|
346
|
-
}
|
|
347
|
-
@mixin text-laba-title-mr() {
|
|
348
|
-
font-size: 32px;
|
|
349
|
-
line-height: 40px;
|
|
350
|
-
font-weight: 400;
|
|
351
|
-
}
|
|
352
|
-
|
|
353
|
-
.text-laba-h1 {
|
|
354
|
-
font-size: 24px;
|
|
355
|
-
line-height: 30px;
|
|
356
|
-
font-weight: 700;
|
|
357
|
-
}
|
|
358
|
-
@mixin text-laba-h1() {
|
|
359
|
-
font-size: 24px;
|
|
360
|
-
line-height: 30px;
|
|
361
|
-
font-weight: 700;
|
|
362
|
-
}
|
|
363
|
-
|
|
364
|
-
.text-laba-h1-b {
|
|
365
|
-
font-size: 24px;
|
|
366
|
-
line-height: 30px;
|
|
367
|
-
font-weight: 700;
|
|
368
|
-
}
|
|
369
|
-
@mixin text-laba-h1-b() {
|
|
370
|
-
font-size: 24px;
|
|
371
|
-
line-height: 30px;
|
|
372
|
-
font-weight: 700;
|
|
373
|
-
}
|
|
374
|
-
|
|
375
|
-
.text-laba-h1-sb {
|
|
376
|
-
font-size: 24px;
|
|
377
|
-
line-height: 30px;
|
|
378
|
-
font-weight: 600;
|
|
379
|
-
}
|
|
380
|
-
@mixin text-laba-h1-sb() {
|
|
381
|
-
font-size: 24px;
|
|
382
|
-
line-height: 30px;
|
|
383
|
-
font-weight: 600;
|
|
384
|
-
}
|
|
385
|
-
|
|
386
|
-
.text-laba-h1-r {
|
|
387
|
-
font-size: 24px;
|
|
388
|
-
line-height: 30px;
|
|
389
|
-
font-weight: 400;
|
|
390
|
-
}
|
|
391
|
-
@mixin text-laba-h1-r() {
|
|
392
|
-
font-size: 24px;
|
|
393
|
-
line-height: 30px;
|
|
394
|
-
font-weight: 400;
|
|
395
|
-
}
|
|
396
|
-
|
|
397
|
-
.text-laba-h2 {
|
|
398
|
-
font-size: 18px;
|
|
399
|
-
line-height: 26px;
|
|
400
|
-
font-weight: 700;
|
|
401
|
-
}
|
|
402
|
-
@mixin text-laba-h2() {
|
|
403
|
-
font-size: 18px;
|
|
404
|
-
line-height: 26px;
|
|
405
|
-
font-weight: 700;
|
|
406
|
-
}
|
|
407
|
-
|
|
408
|
-
.text-laba-h2-b {
|
|
409
|
-
font-size: 18px;
|
|
410
|
-
line-height: 26px;
|
|
411
|
-
font-weight: 700;
|
|
412
|
-
}
|
|
413
|
-
@mixin text-laba-h2-b() {
|
|
414
|
-
font-size: 18px;
|
|
415
|
-
line-height: 26px;
|
|
416
|
-
font-weight: 700;
|
|
417
|
-
}
|
|
418
|
-
|
|
419
|
-
.text-laba-h2-sb {
|
|
420
|
-
font-size: 18px;
|
|
421
|
-
line-height: 26px;
|
|
422
|
-
font-weight: 600;
|
|
423
|
-
}
|
|
424
|
-
@mixin text-laba-h2-sb() {
|
|
425
|
-
font-size: 18px;
|
|
426
|
-
line-height: 26px;
|
|
427
|
-
font-weight: 600;
|
|
428
|
-
}
|
|
429
|
-
|
|
430
|
-
.text-laba-h2-r {
|
|
431
|
-
font-size: 18px;
|
|
432
|
-
line-height: 26px;
|
|
433
|
-
font-weight: 400;
|
|
434
|
-
}
|
|
435
|
-
@mixin text-laba-h2-r() {
|
|
436
|
-
font-size: 18px;
|
|
437
|
-
line-height: 26px;
|
|
438
|
-
font-weight: 400;
|
|
439
|
-
}
|
|
440
|
-
|
|
441
|
-
.text-laba-base-rb {
|
|
442
|
-
font-size: 16px;
|
|
443
|
-
line-height: 24px;
|
|
444
|
-
font-weight: 700;
|
|
445
|
-
}
|
|
446
|
-
@mixin text-laba-base-rb() {
|
|
447
|
-
font-size: 16px;
|
|
448
|
-
line-height: 24px;
|
|
449
|
-
font-weight: 700;
|
|
450
|
-
}
|
|
451
|
-
|
|
452
|
-
.text-laba-base-rs {
|
|
453
|
-
font-size: 16px;
|
|
454
|
-
line-height: 24px;
|
|
455
|
-
font-weight: 600;
|
|
456
|
-
}
|
|
457
|
-
@mixin text-laba-base-rs() {
|
|
458
|
-
font-size: 16px;
|
|
459
|
-
line-height: 24px;
|
|
460
|
-
font-weight: 600;
|
|
461
|
-
}
|
|
462
|
-
|
|
463
|
-
.text-laba-base-rr {
|
|
464
|
-
font-size: 16px;
|
|
465
|
-
line-height: 24px;
|
|
466
|
-
font-weight: 400;
|
|
467
|
-
}
|
|
468
|
-
@mixin text-laba-base-rr() {
|
|
469
|
-
font-size: 16px;
|
|
470
|
-
line-height: 24px;
|
|
471
|
-
font-weight: 400;
|
|
472
|
-
}
|
|
473
|
-
|
|
474
|
-
.text-laba-base-sb {
|
|
475
|
-
font-size: 14px;
|
|
476
|
-
line-height: 20px;
|
|
477
|
-
font-weight: 700;
|
|
478
|
-
}
|
|
479
|
-
@mixin text-laba-base-sb() {
|
|
480
|
-
font-size: 14px;
|
|
481
|
-
line-height: 20px;
|
|
482
|
-
font-weight: 700;
|
|
483
|
-
}
|
|
484
|
-
|
|
485
|
-
.text-laba-base-ss {
|
|
486
|
-
font-size: 14px;
|
|
487
|
-
line-height: 20px;
|
|
488
|
-
font-weight: 600;
|
|
489
|
-
}
|
|
490
|
-
@mixin text-laba-base-ss() {
|
|
491
|
-
font-size: 14px;
|
|
492
|
-
line-height: 20px;
|
|
493
|
-
font-weight: 600;
|
|
494
|
-
}
|
|
495
|
-
|
|
496
|
-
.text-laba-base-sr {
|
|
497
|
-
font-size: 14px;
|
|
498
|
-
line-height: 20px;
|
|
499
|
-
font-weight: 400;
|
|
500
|
-
}
|
|
501
|
-
@mixin text-laba-base-sr() {
|
|
502
|
-
font-size: 14px;
|
|
503
|
-
line-height: 20px;
|
|
504
|
-
font-weight: 400;
|
|
505
|
-
}
|
|
506
|
-
|
|
507
|
-
.text-laba-subtitle-rb {
|
|
508
|
-
font-size: 12px;
|
|
509
|
-
line-height: 16px;
|
|
510
|
-
font-weight: 700;
|
|
511
|
-
}
|
|
512
|
-
@mixin text-laba-subtitle-rb() {
|
|
513
|
-
font-size: 12px;
|
|
514
|
-
line-height: 16px;
|
|
515
|
-
font-weight: 700;
|
|
516
|
-
}
|
|
517
|
-
|
|
518
|
-
.text-laba-subtitle-rs {
|
|
519
|
-
font-size: 12px;
|
|
520
|
-
line-height: 16px;
|
|
521
|
-
font-weight: 600;
|
|
522
|
-
}
|
|
523
|
-
@mixin text-laba-subtitle-rs() {
|
|
524
|
-
font-size: 12px;
|
|
525
|
-
line-height: 16px;
|
|
526
|
-
font-weight: 600;
|
|
527
|
-
}
|
|
528
|
-
|
|
529
|
-
.text-laba-subtitle-rr {
|
|
530
|
-
font-size: 12px;
|
|
531
|
-
line-height: 16px;
|
|
532
|
-
font-weight: 400;
|
|
533
|
-
}
|
|
534
|
-
@mixin text-laba-subtitle-rr() {
|
|
535
|
-
font-size: 12px;
|
|
536
|
-
line-height: 16px;
|
|
537
|
-
font-weight: 400;
|
|
538
|
-
}
|
|
539
|
-
|
|
540
|
-
.text-laba-subtitle-sb {
|
|
541
|
-
font-size: 10px;
|
|
542
|
-
line-height: 12px;
|
|
543
|
-
font-weight: 700;
|
|
544
|
-
}
|
|
545
|
-
@mixin text-laba-subtitle-sb() {
|
|
546
|
-
font-size: 10px;
|
|
547
|
-
line-height: 12px;
|
|
548
|
-
font-weight: 700;
|
|
549
|
-
}
|
|
550
|
-
|
|
551
|
-
.text-laba-subtitle-ss {
|
|
552
|
-
font-size: 10px;
|
|
553
|
-
line-height: 12px;
|
|
554
|
-
font-weight: 600;
|
|
555
|
-
}
|
|
556
|
-
@mixin text-laba-subtitle-ss() {
|
|
557
|
-
font-size: 10px;
|
|
558
|
-
line-height: 12px;
|
|
559
|
-
font-weight: 600;
|
|
560
|
-
}
|
|
561
|
-
|
|
562
|
-
.text-laba-subtitle-sr {
|
|
563
|
-
font-size: 10px;
|
|
564
|
-
line-height: 12px;
|
|
565
|
-
font-weight: 400;
|
|
566
|
-
}
|
|
567
|
-
@mixin text-laba-subtitle-sr() {
|
|
568
|
-
font-size: 10px;
|
|
569
|
-
line-height: 12px;
|
|
570
|
-
font-weight: 400;
|
|
571
|
-
}
|
|
572
|
-
|
|
573
|
-
.text-bill-h1 {
|
|
574
|
-
font-size: 60px;
|
|
575
|
-
line-height: 72px;
|
|
576
|
-
font-weight: 700;
|
|
577
|
-
}
|
|
578
|
-
@mixin text-bill-h1() {
|
|
579
|
-
font-size: 60px;
|
|
580
|
-
line-height: 72px;
|
|
581
|
-
font-weight: 700;
|
|
582
|
-
}
|
|
583
|
-
|
|
584
|
-
.text-bill-h2 {
|
|
585
|
-
font-size: 48px;
|
|
586
|
-
line-height: 58px;
|
|
587
|
-
font-weight: 700;
|
|
588
|
-
}
|
|
589
|
-
@mixin text-bill-h2() {
|
|
590
|
-
font-size: 48px;
|
|
591
|
-
line-height: 58px;
|
|
592
|
-
font-weight: 700;
|
|
593
|
-
}
|
|
594
|
-
|
|
595
|
-
.text-bill-h3 {
|
|
596
|
-
font-size: 40px;
|
|
597
|
-
line-height: 58px;
|
|
598
|
-
font-weight: 700;
|
|
599
|
-
}
|
|
600
|
-
@mixin text-bill-h3() {
|
|
601
|
-
font-size: 40px;
|
|
602
|
-
line-height: 58px;
|
|
603
|
-
font-weight: 700;
|
|
604
|
-
}
|
|
605
|
-
|
|
606
|
-
.text-bill-h4 {
|
|
607
|
-
font-size: 30px;
|
|
608
|
-
line-height: 38px;
|
|
609
|
-
font-weight: 700;
|
|
610
|
-
}
|
|
611
|
-
@mixin text-bill-h4() {
|
|
612
|
-
font-size: 30px;
|
|
613
|
-
line-height: 38px;
|
|
614
|
-
font-weight: 700;
|
|
615
|
-
}
|
|
616
|
-
|
|
617
|
-
.text-bill-h5 {
|
|
618
|
-
font-size: 28px;
|
|
619
|
-
line-height: 40px;
|
|
620
|
-
font-weight: 600;
|
|
621
|
-
}
|
|
622
|
-
@mixin text-bill-h5() {
|
|
623
|
-
font-size: 28px;
|
|
624
|
-
line-height: 40px;
|
|
625
|
-
font-weight: 600;
|
|
626
|
-
}
|
|
627
|
-
|
|
628
|
-
.text-bill-h6 {
|
|
629
|
-
font-size: 24px;
|
|
630
|
-
line-height: 30px;
|
|
631
|
-
font-weight: 600;
|
|
632
|
-
}
|
|
633
|
-
@mixin text-bill-h6() {
|
|
634
|
-
font-size: 24px;
|
|
635
|
-
line-height: 30px;
|
|
636
|
-
font-weight: 600;
|
|
637
|
-
}
|
|
638
|
-
|
|
639
|
-
.text-bill-body-lr {
|
|
640
|
-
font-size: 18px;
|
|
641
|
-
line-height: 26px;
|
|
642
|
-
font-weight: 400;
|
|
643
|
-
}
|
|
644
|
-
@mixin text-bill-body-lr() {
|
|
645
|
-
font-size: 18px;
|
|
646
|
-
line-height: 26px;
|
|
647
|
-
font-weight: 400;
|
|
648
|
-
}
|
|
649
|
-
|
|
650
|
-
.text-bill-body-lm {
|
|
651
|
-
font-size: 18px;
|
|
652
|
-
line-height: 26px;
|
|
653
|
-
font-weight: 500;
|
|
654
|
-
}
|
|
655
|
-
@mixin text-bill-body-lm() {
|
|
656
|
-
font-size: 18px;
|
|
657
|
-
line-height: 26px;
|
|
658
|
-
font-weight: 500;
|
|
659
|
-
}
|
|
660
|
-
|
|
661
|
-
.text-bill-body-lsm {
|
|
662
|
-
font-size: 18px;
|
|
663
|
-
line-height: 26px;
|
|
664
|
-
font-weight: 600;
|
|
665
|
-
}
|
|
666
|
-
@mixin text-bill-body-lsm() {
|
|
667
|
-
font-size: 18px;
|
|
668
|
-
line-height: 26px;
|
|
669
|
-
font-weight: 600;
|
|
670
|
-
}
|
|
671
|
-
|
|
672
|
-
.text-bill-body-blb {
|
|
673
|
-
font-size: 18px;
|
|
674
|
-
line-height: 26px;
|
|
675
|
-
font-weight: 700;
|
|
676
|
-
}
|
|
677
|
-
@mixin text-bill-body-blb() {
|
|
678
|
-
font-size: 18px;
|
|
679
|
-
line-height: 26px;
|
|
680
|
-
font-weight: 700;
|
|
681
|
-
}
|
|
682
|
-
|
|
683
|
-
.text-bill-body-mr {
|
|
684
|
-
font-size: 16px;
|
|
685
|
-
line-height: 24px;
|
|
686
|
-
font-weight: 400;
|
|
687
|
-
}
|
|
688
|
-
@mixin text-bill-body-mr() {
|
|
689
|
-
font-size: 16px;
|
|
690
|
-
line-height: 24px;
|
|
691
|
-
font-weight: 400;
|
|
692
|
-
}
|
|
693
|
-
|
|
694
|
-
.text-bill-body-mm {
|
|
695
|
-
font-size: 16px;
|
|
696
|
-
line-height: 24px;
|
|
697
|
-
font-weight: 500;
|
|
698
|
-
}
|
|
699
|
-
@mixin text-bill-body-mm() {
|
|
700
|
-
font-size: 16px;
|
|
701
|
-
line-height: 24px;
|
|
702
|
-
font-weight: 500;
|
|
703
|
-
}
|
|
704
|
-
|
|
705
|
-
.text-bill-body-msm {
|
|
706
|
-
font-size: 16px;
|
|
707
|
-
line-height: 24px;
|
|
708
|
-
font-weight: 600;
|
|
709
|
-
}
|
|
710
|
-
@mixin text-bill-body-msm() {
|
|
711
|
-
font-size: 16px;
|
|
712
|
-
line-height: 24px;
|
|
713
|
-
font-weight: 600;
|
|
714
|
-
}
|
|
715
|
-
|
|
716
|
-
.text-bill-body-mb {
|
|
717
|
-
font-size: 16px;
|
|
718
|
-
line-height: 24px;
|
|
719
|
-
font-weight: 700;
|
|
720
|
-
}
|
|
721
|
-
@mixin text-bill-body-mb() {
|
|
722
|
-
font-size: 16px;
|
|
723
|
-
line-height: 24px;
|
|
724
|
-
font-weight: 700;
|
|
725
|
-
}
|
|
726
|
-
|
|
727
|
-
.text-bill-label-r {
|
|
728
|
-
font-size: 15px;
|
|
729
|
-
line-height: 26px;
|
|
730
|
-
font-weight: 400;
|
|
731
|
-
}
|
|
732
|
-
@mixin text-bill-label-r() {
|
|
733
|
-
font-size: 15px;
|
|
734
|
-
line-height: 26px;
|
|
735
|
-
font-weight: 400;
|
|
736
|
-
}
|
|
737
|
-
|
|
738
|
-
.text-bill-label-m {
|
|
739
|
-
font-size: 15px;
|
|
740
|
-
line-height: 26px;
|
|
741
|
-
font-weight: 500;
|
|
742
|
-
}
|
|
743
|
-
@mixin text-bill-label-m() {
|
|
744
|
-
font-size: 15px;
|
|
745
|
-
line-height: 26px;
|
|
746
|
-
font-weight: 500;
|
|
747
|
-
}
|
|
748
|
-
|
|
749
|
-
.text-bill-label-sm {
|
|
750
|
-
font-size: 15px;
|
|
751
|
-
line-height: 26px;
|
|
752
|
-
font-weight: 600;
|
|
753
|
-
}
|
|
754
|
-
@mixin text-bill-label-sm() {
|
|
755
|
-
font-size: 15px;
|
|
756
|
-
line-height: 26px;
|
|
757
|
-
font-weight: 600;
|
|
758
|
-
}
|
|
759
|
-
|
|
760
|
-
.text-bill-label-b {
|
|
761
|
-
font-size: 15px;
|
|
762
|
-
line-height: 26px;
|
|
763
|
-
font-weight: 700;
|
|
764
|
-
}
|
|
765
|
-
@mixin text-bill-label-b() {
|
|
766
|
-
font-size: 15px;
|
|
767
|
-
line-height: 26px;
|
|
768
|
-
font-weight: 700;
|
|
769
|
-
}
|
|
770
|
-
|
|
771
|
-
.text-bill-body-sr {
|
|
772
|
-
font-size: 14px;
|
|
773
|
-
line-height: 22px;
|
|
774
|
-
font-weight: 400;
|
|
775
|
-
}
|
|
776
|
-
@mixin text-bill-body-sr() {
|
|
777
|
-
font-size: 14px;
|
|
778
|
-
line-height: 22px;
|
|
779
|
-
font-weight: 400;
|
|
780
|
-
}
|
|
781
|
-
|
|
782
|
-
.text-bill-body-sm {
|
|
783
|
-
font-size: 14px;
|
|
784
|
-
line-height: 22px;
|
|
785
|
-
font-weight: 500;
|
|
786
|
-
}
|
|
787
|
-
@mixin text-bill-body-sm() {
|
|
788
|
-
font-size: 14px;
|
|
789
|
-
line-height: 22px;
|
|
790
|
-
font-weight: 500;
|
|
791
|
-
}
|
|
792
|
-
|
|
793
|
-
.text-bill-body-ssm {
|
|
794
|
-
font-size: 14px;
|
|
795
|
-
line-height: 22px;
|
|
796
|
-
font-weight: 600;
|
|
797
|
-
}
|
|
798
|
-
@mixin text-bill-body-ssm() {
|
|
799
|
-
font-size: 14px;
|
|
800
|
-
line-height: 22px;
|
|
801
|
-
font-weight: 600;
|
|
802
|
-
}
|
|
803
|
-
|
|
804
|
-
.text-bill-body-sb {
|
|
805
|
-
font-size: 14px;
|
|
806
|
-
line-height: 22px;
|
|
807
|
-
font-weight: 700;
|
|
808
|
-
}
|
|
809
|
-
@mixin text-bill-body-sb() {
|
|
810
|
-
font-size: 14px;
|
|
811
|
-
line-height: 22px;
|
|
812
|
-
font-weight: 700;
|
|
813
|
-
}
|
|
814
|
-
|
|
815
|
-
.text-bill-body-esr {
|
|
816
|
-
font-size: 12px;
|
|
817
|
-
line-height: 20px;
|
|
818
|
-
font-weight: 400;
|
|
819
|
-
}
|
|
820
|
-
@mixin text-bill-body-esr() {
|
|
821
|
-
font-size: 12px;
|
|
822
|
-
line-height: 20px;
|
|
823
|
-
font-weight: 400;
|
|
824
|
-
}
|
|
825
|
-
|
|
826
|
-
.text-bill-body-ems {
|
|
827
|
-
font-size: 12px;
|
|
828
|
-
line-height: 20px;
|
|
829
|
-
font-weight: 500;
|
|
830
|
-
}
|
|
831
|
-
@mixin text-bill-body-ems() {
|
|
832
|
-
font-size: 12px;
|
|
833
|
-
line-height: 20px;
|
|
834
|
-
font-weight: 500;
|
|
835
|
-
}
|
|
836
|
-
|
|
837
|
-
.text-bill-body-essm {
|
|
838
|
-
font-size: 12px;
|
|
839
|
-
line-height: 20px;
|
|
840
|
-
font-weight: 600;
|
|
841
|
-
}
|
|
842
|
-
@mixin text-bill-body-essm() {
|
|
843
|
-
font-size: 12px;
|
|
844
|
-
line-height: 20px;
|
|
845
|
-
font-weight: 600;
|
|
846
|
-
}
|
|
847
|
-
|
|
848
|
-
.text-bill-body-esb {
|
|
849
|
-
font-size: 12px;
|
|
850
|
-
line-height: 20px;
|
|
851
|
-
font-weight: 700;
|
|
852
|
-
}
|
|
853
|
-
@mixin text-bill-body-esb() {
|
|
854
|
-
font-size: 12px;
|
|
855
|
-
line-height: 20px;
|
|
856
|
-
font-weight: 700;
|
|
857
|
-
}
|
|
858
|
-
|
|
859
1
|
$typography-map: (
|
|
860
2
|
'payhere-h1': (60px, ('line-height': 72px, 'font-weight': 700)),
|
|
861
3
|
'payhere-h2': (48px, ('line-height': 58px, 'font-weight': 700)),
|