1 |
- {"version":3,"sources":["webpack://_N_E/src/components/PageContainer/PageContainer.module.scss","webpack://_N_E/src/styles/_utility.scss","webpack://_N_E/src/styles/_breakpoints.scss","webpack://_N_E/src/components/Sanity/LocalizationMessage/LocalizationMessage.module.scss","webpack://_N_E/src/components/Sanity/Blocks/Blocks.module.scss","webpack://_N_E/src/components/Sanity/Page/Page.module.scss","webpack://_N_E/src/styles/_theme.scss","webpack://_N_E/src/pages/_error.module.scss","webpack://_N_E/src/pages/product-updates/changelog.module.scss"],"names":[],"mappings":"AAIA,gCCkxBE,eAFyB,CD9wBzB,yCAAA,CACA,oBAAA,CACA,oCAAA,CACA,wBAAA,CACA,sBAAA,CAEA,wCAAA,CACA,6CAAA,CACA,2CAAA,CE8BA,yCFxCF,gCCoxBI,SAAA,CAAA,CD/vBF,+DACE,oBAAA,CACA,sBAAA,CEiBF,yCFnBA,+DAKI,qBAAA,CAAA,CG9BN,sCACE,iBAAA,CACA,6BAAA,CACA,wCAAA,CACA,qCAAA,CACA,0CAAA,CACA,2CAAA,CAEA,gBAAA,CACA,gDACE,aAAA,CCLJ,oBACE,mCAAA,CAGF,qBACE,gCAAA,CAGF,6BACE,mCAAA,CAGF,uBACE,6BAAA,CAGF,qBACE,cAAA,CACA,0CAAA,CACA,6BAAA,CAGF,8BACE,YAAA,CACA,sBAAA,CACA,kBAAA,CAGF,uBACE,kCAAA,CAGF,kBACE,iCAAA,CAGF,kBACE,gCAAA,CAGF,yBACE,sCAAA,CAGA,mBA9CsB,CAiDxB,6CALE,gCAAA,CACA,yBAQA,CAJF,oBAGE,iDAAA,CACA,yBAAA,CAGF,oBACE,sBAAA,CACA,wCAAA,CAGF,oBACE,sBAAA,CACA,uCAAA,CC7DF,2BACE,uCAAA,CACA,uCAAA,CACA,wDAAA,CAQA,UAAA,CHwCA,0CGnDF,2BAKI,YAAA,CACA,sBAAA,CACA,qCACE,0BAAA,CAAA,CAUN,qCAHE,mCAQA,CALF,mBACE,2CAIA,CHsBA,yCG3BF,mBAGI,4CAAA,CAAA,CAKJ,2BACE,yCAAA,CACA,gDAAA,CACA,qCACE,kDAAA,CACA,oBAAA,CAIJ,kBACE,6BAAA,CAOA,uCAAA,CACA,2CAAA,CACA,mBAAA,CACA,wBAAA,CCzCA,mCD8BF,kBAGI,yBAAA,CAAA,CC9BF,qCD8BE,yBAAA,CC1CF,kCDuCF,kBAMI,SAAA,CAAA,CC1CF,oCD0CE,SAAA,CAQJ,6BACE,sCApD2B,CAuD7B,sBACE,YAAA,CACA,kBAAA,CACA,gDAAA,CACA,kBAAA,CACA,gCACE,0BAAA,CACA,oCACE,oBAAA,CACA,0CAAA,CACA,mBAAA,CAGJ,0BACE,2BAAA,CACA,wCAAA,CAIJ,mBACE,cAAA,CACA,0CAAA,CACA,6BAAA,CEhFF,qDFoFE,YAAA,CACA,sBAAA,CACA,kBE5EA,CAVF,yBAEE,qBAAA,CAGA,YAAA,CACA,qBAAA,CACA,mBAAA,CACA,yCAAA,CACA,uCAAA,CACA,qBAAA,CAGF,6BACE,WAAA,CAGF,qBACE,gCAAA,CACA,sCAAA,CACA,iBAAA,CACA,kBAAA,CAGF,sBACE,YAAA,CACA,sBAAA,CACA,wCAAA,CAGF,yBACE,sCAAA,CC7BF,4BACE,aAAA,CAGF,wBACE,gCAAA,CACA,iBAAA,CACA,mCAAA,CAGF,oCACE,UAAA,CACA,YAAA,CACA,kBAAA,CACA,0BAAA,CACA,8CACE,wBAAA","file":"static/css/0a393c64ed842d35.css","sourcesContent":["@use \"src/styles/breakpoints\";\n@use \"src/styles/utility\";\n@use \"src/styles/constants\";\n\n.container {\n @include utility.pageContainer();\n padding-block-start: var(--spacing-medium);\n margin-block-start: 0;\n margin-block-end: var(--spacing-mega);\n margin-inline-start: auto;\n margin-inline-end: auto;\n\n --flow-side-spacing: var(--spacing-small);\n padding-inline-start: var(--flow-side-spacing);\n padding-inline-end: var(--flow-side-spacing);\n\n /**\n * On mobile, a few components can't have padding at parent level.\n * For example the QuickLinks, Recently Read, etc. Because they are horizontally scrollable\n * So, we make padding horizontal 0 the parent level, and pass the `--flow-side-spacing` down to children\n * Those components, will implement their own space/padding based on `--flow-side-padding` value\n * See RecentReadingSession.module.scss for an implementation example\n *\n * For now we only want this to be implemented on mobile, so we make `--flow-side-padding: 0` on tablet and above\n **/\n &.fullWidth {\n padding-inline-end: 0;\n padding-inline-start: 0;\n\n @include breakpoints.tablet {\n --flow-side-spacing: 0;\n }\n }\n}\n","@use \"src/styles/constants\";\n@use \"src/styles/breakpoints\";\n@use \"sass:map\";\n\n@mixin center-horizontally {\n display: inline-block;\n margin-block-start: auto;\n margin-inline-end: auto;\n margin-block-end: auto;\n margin-inline-start: auto;\n}\n\n@mixin center-vertically {\n display: flex;\n flex-direction: column;\n justify-content: center;\n}\n\n@mixin lighten-background-color {\n background-image: linear-gradient(\n to right,\n var(--color-background-lighten),\n var(--color-background-lighten)\n );\n}\n\n// On mobile, font size 1-3 will try to preserve the line, using flex\n// font 4-5 no longer using the flex. And not preserving the line\n\n// If you're updating font size, double check on font size 3.\n// make sure it will not break the layout\n\n$line-heights-map: (\n tajweed: (\n tablet: (),\n ),\n fallback_qpc_uthmani_hafs: (\n tablet: (\n 1: 6vh,\n 2: 6vh,\n 3: 6.1vh,\n 4: 6vh,\n 5: 5.68vh,\n 6: 8.14vh,\n 7: 10.61vh,\n 8: 13.07vh,\n 9: 15.54vh,\n 10: 18vh,\n ),\n ),\n qpc_uthmani_hafs: (\n tablet: (\n 1: 6vh,\n 2: 6vh,\n 3: 6.1vh,\n 4: 6vh,\n 5: 5.68vh,\n 6: 8.14vh,\n 7: 10.61vh,\n 8: 13.07vh,\n 9: 15.54vh,\n 10: 18vh,\n ),\n ),\n text_indopak_15_lines: (\n tablet: (\n 1: 6vh,\n 2: 6vh,\n 3: 6.1vh,\n 4: 6vh,\n 5: 5.68vh,\n 6: 8.34vh,\n 7: 11.01vh,\n 8: 13.67vh,\n 9: 16.34vh,\n 10: 19vh,\n ),\n ),\n text_indopak_16_lines: (\n tablet: (\n 1: 5.7vh,\n 2: 5.7vh,\n 3: 5.7vh,\n 4: 5.6vh,\n 5: 5.6vh,\n 6: 7.36vh,\n 7: 9.12vh,\n 8: 10.88vh,\n 9: 12.64vh,\n 10: 14.4vh,\n ),\n ),\n code_v2: (\n tablet: (\n 1: 6.1vh,\n 2: 6.1vh,\n 3: 6.1vh,\n 4: 6.1vh,\n 5: 6.1vh,\n 6: 9.28vh,\n 7: 12.46vh,\n 8: 15.64vh,\n 9: 18.82vh,\n 10: 22vh,\n ),\n ),\n code_v1: (\n tablet: (\n 1: 6.1vh,\n 2: 6vh,\n 3: 5.8vh,\n 4: 5.4vh,\n 5: 5vh,\n 6: 8vh,\n 7: 11vh,\n 8: 14vh,\n 9: 17vh,\n 10: 20vh,\n ),\n ),\n translation: (\n tablet: (\n 1: 3.2vh,\n 2: 3.5vh,\n 3: 4vh,\n 4: 4.2vh,\n 5: 4.3vh,\n ),\n ),\n tafsir: (\n tablet: (\n 1: 3.2vh,\n 2: 3.5vh,\n 3: 4vh,\n 4: 4.2vh,\n 5: 4.3vh,\n ),\n ),\n);\n\n// TODO: rename to $font-size-scales-map\n$scales-map: (\n fallback_qpc_uthmani_hafs: (\n tablet: (\n 1: 3.19vh,\n 2: 3.2vh,\n 3: 3.39vh,\n 4: 3.6vh,\n 5: 4.4vh,\n 6: 5.55vh,\n 7: 6.7vh,\n 8: 7.85vh,\n 9: 9vh,\n 10: 10.15vh,\n ),\n mobile: (\n 1: 4vw,\n 2: 4.5vw,\n 3: 5vw,\n 4: 8.9vw,\n 5: 11vw,\n 6: 12vw,\n 7: 13vw,\n 8: 14vw,\n 9: 15vw,\n 10: 16vw,\n ),\n ),\n //TODO: rename qpc_uthmani_hafs to text_qpc_hafs\n qpc_uthmani_hafs:\n (\n tablet: (\n 1: 3.2vh,\n 2: 3.5vh,\n 3: 4vh,\n 4: 4vh,\n 5: 4.4vh,\n 6: 5.56vh,\n 7: 6.72vh,\n 8: 7.88vh,\n 9: 9.04vh,\n 10: 10.27vh,\n ),\n mobile: (\n 1: 4vw,\n 2: 4.5vw,\n 3: 4.6vw,\n 4: 8.9vw,\n 5: 11vw,\n 6: 12vw,\n 7: 13vw,\n 8: 14vw,\n 9: 15vw,\n 10: 16vw,\n ),\n ),\n text_indopak_15_lines: (\n tablet: (\n 1: 3.2vh,\n 2: 3.5vh,\n 3: 4vh,\n 4: 4.2vh,\n 5: 4.3vh,\n 6: 5.64vh,\n 7: 6.98vh,\n 8: 8.32vh,\n 9: 9.66vh,\n 10: 11vh,\n ),\n mobile: (\n 1: 4.4vw,\n 2: 4.8vw,\n 3: 5.1vw,\n 4: 6vw,\n 5: 9.3vw,\n 6: 9.8vw,\n 7: 10.2vw,\n 8: 11vw,\n 9: 12vw,\n 10: 13vw,\n ),\n ),\n text_indopak_16_lines: (\n tablet: (\n 1: 3.1vh,\n 2: 3.2vh,\n 3: 3.4vh,\n 4: 3.7vh,\n 5: 3.95vh,\n 6: 5.08vh,\n 7: 6.21vh,\n 8: 7.34vh,\n 9: 8.47vh,\n 10: 9.6vh,\n ),\n mobile: (\n 1: 4.4vw,\n 2: 4.8vw,\n 3: 5.1vw,\n 4: 6vw,\n 5: 9.3vw,\n 6: 9.8vw,\n 7: 10.2vw,\n 8: 11vw,\n 9: 12vw,\n 10: 13vw,\n ),\n ),\n code_v2: (\n tablet: (\n 1: 2.9vh,\n 2: 3vh,\n 3: 3.2vh,\n 4: 3.5vh,\n 5: 3.7vh,\n 6: 5.16vh,\n 7: 6.62vh,\n 8: 8.08vh,\n 9: 9.54vh,\n 10: 11vh,\n ),\n mobile: (\n 1: 4vw,\n 2: 5vw,\n 3: 5.3vw,\n 4: 8.4vw,\n 5: 10vw,\n 6: 11vw,\n 7: 12vw,\n 8: 13vw,\n 9: 14vw,\n 10: 15vw,\n ),\n ),\n code_v1: (\n tablet: (\n 1: 3.5vh,\n 2: 3.8vh,\n 3: 4vh,\n 4: 4.3vh,\n 5: 4.5vh,\n 6: 6.14vh,\n 7: 7.77vh,\n 8: 9.42vh,\n 9: 11.05vh,\n 10: 12.7vh,\n ),\n mobile: (\n 1: 4vw,\n 2: 5vw,\n 3: 5.9vw,\n 4: 10vw,\n 5: 12vw,\n 6: 13vw,\n 7: 14vw,\n 8: 15vw,\n 9: 16vw,\n 10: 17vw,\n ),\n ),\n translation: (\n tablet: (\n 1: 0.85rem,\n 2: 1rem,\n 3: 1.18rem,\n 4: 1.4rem,\n 5: 2rem,\n 6: 2.3rem,\n 7: 2.7rem,\n 8: 3rem,\n 9: 3.5rem,\n 10: 4rem,\n ),\n mobile: (\n 1: 0.85rem,\n 2: 0.95rem,\n 3: 1.05rem,\n 4: 1.2rem,\n 5: 1.5rem,\n 6: 1.8rem,\n 7: 2.1rem,\n 8: 2.4rem,\n 9: 2.75rem,\n 10: 3rem,\n ),\n ),\n tafsir: (\n tablet: (\n 1: 0.85rem,\n 2: 1.1rem,\n 3: 1.2rem,\n 4: 1.4rem,\n 5: 2rem,\n 6: 2.3rem,\n 7: 2.7rem,\n 8: 3rem,\n 9: 3.5rem,\n 10: 4rem,\n ),\n mobile: (\n 1: 0.85rem,\n 2: 0.95rem,\n 3: 1.1rem,\n 4: 1.2rem,\n 5: 1.4rem,\n 6: 1.8rem,\n 7: 2.1rem,\n 8: 2.4rem,\n 9: 2.75rem,\n 10: 3rem,\n ),\n ),\n tajweed: (\n tablet: (),\n mobile: (),\n ),\n);\n\n$skeleton-height-map: (\n tajweed: (\n desktop: (\n 1: 2.52rem,\n 2: 3.47rem,\n 3: 4.08rem,\n 4: 5.03rem,\n 5: 5.15rem,\n 6: 5.65rem,\n 7: 5.8rem,\n 8: 5.9rem,\n 9: 6.05rem,\n 10: 6.15rem,\n ),\n mobile: (\n 1: 1.9rem,\n 2: 3.4rem,\n 3: 4.1rem,\n 4: 5.03rem,\n 5: 7.24rem,\n 6: 1rem,\n 7: 1rem,\n 8: 1rem,\n 9: 1rem,\n 10: 1rem,\n ),\n ),\n qpc_uthmani_hafs: (\n desktop: (\n 1: 4.57vh,\n 2: 4.57vh,\n 3: 4.65vh,\n 4: 4.56vh,\n 5: 4.63vh,\n 6: 6.79vh,\n 7: 9.2vh,\n 8: 11.72vh,\n 9: 14.21vh,\n 10: 16.6vh,\n ),\n mobile: (\n 1: 4.55vw,\n 2: 5.5vw,\n 3: 5.5vw,\n 4: 8.9vw,\n 5: 11vw,\n 6: 1rem,\n 7: 1rem,\n 8: 1rem,\n 9: 1rem,\n 10: 1rem,\n ),\n ),\n text_indopak_15_lines: (\n desktop: (\n 1: 4.56vh,\n 2: 4.56vh,\n 3: 4.66vh,\n 4: 4.65vh,\n 5: 4.56vh,\n 6: 6.96vh,\n 7: 9.66vh,\n 8: 12.38vh,\n 9: 15.03vh,\n 10: 17.65vh,\n ),\n mobile: (\n 1: 6.8vw,\n 2: 7.6vw,\n 3: 8.26vw,\n 4: 6vw,\n 5: 9.3vw,\n 6: 1rem,\n 7: 1rem,\n 8: 1rem,\n 9: 1rem,\n 10: 1rem,\n ),\n ),\n text_indopak_16_lines: (\n desktop: (\n 1: 4.24vh,\n 2: 4.24vh,\n 3: 4.24vh,\n 4: 4.13vh,\n 5: 4.32vh,\n 6: 5.96vh,\n 7: 7.64vh,\n 8: 9.44vh,\n 9: 11.15vh,\n 10: 12.86vh,\n ),\n mobile: (\n 1: 6.8vw,\n 2: 7.6vw,\n 3: 8.26vw,\n 4: 6vw,\n 5: 9.3vw,\n 6: 1rem,\n 7: 1rem,\n 8: 1rem,\n 9: 1rem,\n 10: 1rem,\n ),\n ),\n code_v2: (\n desktop: (\n 1: 4.65vh,\n 2: 4.65vh,\n 3: 4.65vh,\n 4: 4.65vh,\n 5: 4.65vh,\n 6: 7.84vh,\n 7: 11.03vh,\n 8: 14.22vh,\n 9: 17.41vh,\n 10: 20.6vh,\n ),\n mobile: (\n 1: 4.17vw,\n 2: 6.54vw,\n 3: 7.1vw,\n 4: 8.4vw,\n 5: 10vw,\n 6: 1rem,\n 7: 1rem,\n 8: 1rem,\n 9: 1rem,\n 10: 1rem,\n ),\n ),\n code_v1: (\n desktop: (\n 1: 4.62vh,\n 2: 4.55vh,\n 3: 4.5vh,\n 4: 4.45vh,\n 5: 4.65vh,\n 6: 7.16vh,\n 7: 9.94vh,\n 8: 12.63vh,\n 9: 15.55vh,\n 10: 18.6vh,\n ),\n mobile: (\n 1: 5.08vw,\n 2: 7.05vw,\n 3: 8.78vw,\n 4: 10vw,\n 5: 12vw,\n 6: 1rem,\n 7: 1rem,\n 8: 1rem,\n 9: 1rem,\n 10: 1rem,\n ),\n ),\n default: (\n desktop: (\n 1: 4.57vh,\n 2: 4.57vh,\n 3: 4.65vh,\n 4: 4.56vh,\n 5: 4.63vh,\n 6: 6.79vh,\n 7: 9.2vh,\n 8: 11.72vh,\n 9: 14.21vh,\n 10: 16.6vh,\n ),\n mobile: (\n 1: 4vw,\n 2: 5vw,\n 3: 5.4vw,\n 4: 8.9vw,\n 5: 11vw,\n 6: 1rem,\n 7: 1rem,\n 8: 1rem,\n 9: 1rem,\n 10: 1rem,\n ),\n ),\n);\n\n// for now, we're only doing fixed witdth for tablet & desktop.\n// because mobile is relatively more stable compared to desktop\n// TODO: implement fixed on mobile as well\n$line-width-map: (\n tajweed: (\n tablet: (\n 1: calc(12.5 * var(--spacing-mega)),\n 2: calc(16.5 * var(--spacing-mega)),\n 3: calc(18.8 * var(--spacing-mega)),\n 4: calc(22.5 * var(--spacing-mega)),\n 5: calc(23.2 * var(--spacing-mega)),\n 6: calc(25.2 * var(--spacing-mega)),\n 7: calc(25.6 * var(--spacing-mega)),\n 8: calc(26.2 * var(--spacing-mega)),\n 9: calc(27 * var(--spacing-mega)),\n 10: calc(27.3 * var(--spacing-mega)),\n ),\n ),\n fallback_qpc_uthmani_hafs: (\n tablet: (\n 1: 55vh,\n 2: 59vh,\n 3: 63.8vh,\n 4: 65vh,\n 5: 66vh,\n 6: 1rem,\n 7: 1rem,\n 8: 1rem,\n 9: 1rem,\n 10: 1rem,\n ),\n desktop: (\n 1: 56vh,\n 2: 56.2vh,\n 3: 60vh,\n 4: 63vh,\n 5: 81vh,\n 6: 102.6vh,\n 7: 124.3vh,\n 8: 146.2vh,\n 9: 168vh,\n 10: 190vh,\n ),\n ),\n qpc_uthmani_hafs: (\n tablet: (\n 1: 55vh,\n 2: 59vh,\n 3: 63.8vh,\n 4: 65vh,\n 5: 66vh,\n 6: 1rem,\n 7: 1rem,\n 8: 1rem,\n 9: 1rem,\n 10: 1rem,\n ),\n desktop: (\n 1: 60vh,\n 2: 65vh,\n 3: 73.5vh,\n 4: 74vh,\n 5: 81vh,\n 6: 102.8vh,\n 7: 124.6vh,\n 8: 146.4vh,\n 9: 168.2vh,\n 10: 190vh,\n ),\n ),\n text_indopak_15_lines: (\n tablet: (\n 1: 58vh,\n 2: 64vh,\n 3: 76vh,\n 4: 75vh,\n 5: 76vh,\n 6: 98.6vh,\n 7: 121.2vh,\n 8: 143.8vh,\n 9: 166.4vh,\n 10: 189vh,\n ),\n ),\n text_indopak_16_lines: (\n tablet: (\n 1: 55vh,\n 2: 61vh,\n 3: 63vh,\n 4: 65vh,\n 5: 69vh,\n 6: 93.2vh,\n 7: 117.4vh,\n 8: 141.6vh,\n 9: 165.8vh,\n 10: 190vh,\n ),\n ),\n code_v2: (\n tablet: (\n 1: 52vh,\n 2: 54vh,\n 3: 56vh,\n 4: 61vh,\n 5: 64.5vh,\n 6: 90.4vh,\n 7: 116.3vh,\n 8: 142.2vh,\n 9: 168.1vh,\n 10: 194vh,\n ),\n ),\n code_v1: (\n tablet: (\n 1: 54vh,\n 2: 56.5vh,\n 3: 59.5vh,\n 4: 63vh,\n 5: 67vh,\n 6: 91.6vh,\n 7: 116.2vh,\n 8: 140.8vh,\n 9: 165.4vh,\n 10: 190vh,\n ),\n ),\n);\n\n@function map-deep-get($map, $keys...) {\n @each $key in $keys {\n $map: map-get($map, $key);\n }\n @return $map;\n}\n\n@function get-scales($name, $device-type, $map) {\n @return map-deep-get($map, $name, $device-type);\n}\n\n// generate line-width based on font type, font-scale, and screen width;\n@mixin generate-line-width-scales($name) {\n $mobile-scales: get-scales($name, \"mobile\", $line-width-map);\n $tablet-scales: get-scales($name, \"tablet\", $line-width-map);\n $desktop-scales: get-scales($name, \"desktop\", $line-width-map);\n\n @for $i from 1 through constants.$maximum-font-step {\n .#{$name}-line-width-#{$i} {\n @if $mobile-scales != null and map.has-key($tablet-scales, $i) {\n --line-width: #{map.get($mobile-scales, $i)};\n }\n\n @if $tablet-scales != null and map.has-key($tablet-scales, $i) {\n @include breakpoints.tablet {\n --line-width: #{map.get($tablet-scales, $i)};\n }\n }\n\n @if $desktop-scales != null and map.has-key($desktop-scales, $i) {\n @include breakpoints.desktop {\n --line-width: #{map.get($desktop-scales, $i)};\n }\n }\n }\n }\n}\n\n@mixin generate-font-scales($name) {\n $mobile-scales: null;\n $tablet-scales: null;\n $tablet-line-height-scales: null;\n $desktop-skeleton-height-scales: null;\n $mobile-skeleton-height-scales: null;\n\n // reading view skeletons mapping\n @if map.has-key($skeleton-height-map, $name) {\n $desktop-skeleton-height-scales: get-scales(\n $name,\n \"desktop\",\n $skeleton-height-map\n );\n $mobile-skeleton-height-scales: get-scales(\n $name,\n \"mobile\",\n $skeleton-height-map\n );\n } @else {\n $desktop-skeleton-height-scales: get-scales(\n \"default\",\n \"desktop\",\n $skeleton-height-map\n );\n $mobile-skeleton-height-scales: get-scales(\n \"default\",\n \"mobile\",\n $skeleton-height-map\n );\n }\n\n // line heights mapping\n @if map.has-key($line-heights-map, $name) {\n $tablet-line-height-scales: get-scales($name, \"tablet\", $line-heights-map);\n } @else {\n $tablet-line-height-scales: get-scales(\n \"default\",\n \"tablet\",\n $line-heights-map\n );\n }\n\n // font scales mapping\n @if map.has-key($scales-map, $name) {\n $mobile-scales: get-scales($name, \"mobile\", $scales-map);\n $tablet-scales: get-scales($name, \"tablet\", $scales-map);\n } @else {\n $mobile-scales: get-scales(\"default\", \"mobile\", $scales-map);\n $tablet-scales: get-scales(\"default\", \"tablet\", $scales-map);\n }\n\n @for $i from 1 through constants.$maximum-font-step {\n .#{$name}-font-size-#{$i} {\n --skeleton-height: #{map.get($mobile-skeleton-height-scales, $i)};\n --font-size: #{map.get($mobile-scales, $i)};\n --line-height: normal;\n @include breakpoints.tablet {\n --font-size: #{map.get($tablet-scales, $i)};\n --line-height: #{map.get($tablet-line-height-scales, $i)};\n --skeleton-height: #{map.get($desktop-skeleton-height-scales, $i)};\n }\n font-size: var(--font-size);\n }\n }\n}\n\n// Sets a max-width based on the device width. Inspired by the bootstrap container (https://getbootstrap.com/docs/5.0/layout/containers/).\n$large-device-width-ratio: 95%;\n$quran-max-container-width: 112rem;\n@mixin quranContainer() {\n width: 95%;\n\n @include breakpoints.tablet {\n width: $large-device-width-ratio;\n max-width: $quran-max-container-width;\n }\n}\n\n$page-container-max-width: 80rem;\n@mixin pageContainer {\n max-width: $page-container-max-width;\n @include breakpoints.tablet {\n width: 80%;\n }\n}\n","// For usage see: https://medium.com/codeartisan/breakpoints-and-media-queries-in-scss-46e8f551e2f2\n$breakpoints-mobileS: 320px;\n$breakpoints-mobileM: 375px;\n$breakpoints-mobileL: 425px;\n$breakpoints-tablet: 768px;\n$breakpoints-desktop: 1024px;\n\n@mixin mobileS {\n @media only screen and (min-width: $breakpoints-mobileS) {\n @content;\n }\n}\n\n@mixin smallerThanMobileS {\n @media only screen and (max-width: $breakpoints-mobileS) {\n @content;\n }\n}\n\n@mixin mobileM {\n @media only screen and (min-width: $breakpoints-mobileM) {\n @content;\n }\n}\n\n@mixin smallerThanMobileM {\n @media only screen and (max-width: $breakpoints-mobileM) {\n @content;\n }\n}\n\n@mixin mobileL {\n @media only screen and (min-width: $breakpoints-mobileL) {\n @content;\n }\n}\n\n@mixin smallerThanMobileL {\n @media only screen and (max-width: $breakpoints-mobileL) {\n @content;\n }\n}\n\n@mixin tablet {\n @media only screen and (min-width: $breakpoints-tablet) {\n @content;\n }\n}\n\n@mixin smallerThanTablet {\n @media only screen and (max-width: $breakpoints-tablet) {\n @content;\n }\n}\n\n@mixin desktop {\n @media only screen and (min-width: $breakpoints-desktop) {\n @content;\n }\n}\n\n@mixin smallerThanDesktop {\n @media only screen and (max-width: $breakpoints-desktop) {\n @content;\n }\n}\n",".container {\n position: relative;\n padding: var(--spacing-medium);\n margin-block-start: var(--spacing-medium);\n background: var(--color-success-faded);\n border-radius: var(--border-radius-default);\n border: 1px solid var(--color-success-faint);\n\n text-align: start;\n [dir=\"rtl\"] & {\n direction: rtl;\n }\n}\n","@use \"src/styles/breakpoints\";\n@use \"src/styles/theme\";\n\n$paragraph-line-height: 1.75rem;\n\n.bold {\n font-weight: var(--font-weight-bold);\n}\n\n.title {\n font-size: var(--font-size-jumbo);\n}\n\n.headerSection {\n padding-block: var(--spacing-medium);\n}\n\n.caption {\n color: var(--color-text-faded);\n}\n\n.image {\n max-width: 100%;\n border-radius: var(--border-radius-rounded);\n margin: var(--spacing-large) 0;\n}\n\n.imageContainer {\n display: flex;\n justify-content: center;\n align-items: center;\n}\n\n.heading {\n padding-block: var(--spacing-small);\n}\n\n.h1 {\n font-size: var(--font-size-xlarge);\n}\n\n.h2 {\n font-size: var(--font-size-large);\n}\n\n.paragraph {\n padding-block-end: var(--spacing-small);\n font-size: var(--font-size-large);\n opacity: var(--opacity-85);\n line-height: $paragraph-line-height;\n}\n\n.list {\n font-size: var(--font-size-large);\n opacity: var(--opacity-85);\n padding-block-end: calc(0.5 * var(--spacing-xxsmall));\n padding-inline-start: 1rem;\n}\n\n.li-2 {\n list-style-type: circle;\n margin-inline-start: var(--spacing-large);\n}\n\n.li-3 {\n list-style-type: square;\n margin-inline-start: var(--spacing-mega);\n}\n","@use \"src/styles/breakpoints\";\n@use \"src/styles/theme\";\n\n$blocks-container-max-width: calc(25 * var(--spacing-mega));\n\n.pageContainer {\n padding-block-start: var(--spacing-mega);\n padding-block-end: var(--spacing-medium);\n border-block-end: 1px solid var(--color-borders-hairline);\n @include breakpoints.desktop {\n display: flex;\n justify-content: center;\n [dir=\"rtl\"] & {\n flex-direction: row-reverse;\n }\n }\n width: 100%;\n}\n\n.bold {\n font-weight: var(--font-weight-bold);\n}\n\n.title {\n font-size: calc(1.15 * var(--font-size-jumbo));\n @include breakpoints.smallerThanTablet {\n font-size: calc(1.15 * var(--font-size-normal));\n }\n font-weight: var(--font-weight-bold);\n}\n\n.headerSection {\n padding-block-start: var(--spacing-medium);\n padding-inline-end: calc(1.5 * var(--spacing-mega));\n [dir=\"rtl\"] & {\n padding-inline-start: calc(1.5 * var(--spacing-mega));\n padding-inline-end: 0;\n }\n}\n\n.date {\n color: var(--color-text-faded);\n @include theme.light {\n opacity: var(--opacity-75);\n }\n @include theme.dark {\n opacity: 1;\n }\n font-weight: var(--font-weight-semibold);\n font-size: calc(0.85 * var(--font-size-normal));\n letter-spacing: 0.5px;\n text-transform: uppercase;\n}\n\n.blocksContainer {\n max-width: $blocks-container-max-width;\n}\n\n.backLink {\n display: flex;\n align-items: center;\n margin-block-end: calc(1.5 * var(--spacing-medium));\n line-height: normal;\n [dir=\"rtl\"] & {\n flex-direction: row-reverse;\n & > svg {\n transform: scaleX(-1);\n margin-inline-start: var(--spacing-xxsmall);\n margin-inline-end: 0;\n }\n }\n & > svg {\n width: var(--spacing-medium);\n margin-inline-end: var(--spacing-xxsmall);\n }\n}\n\n.image {\n max-width: 100%;\n border-radius: var(--border-radius-rounded);\n margin: var(--spacing-large) 0;\n}\n\n.imageContainer {\n display: flex;\n justify-content: center;\n align-items: center;\n}\n","@mixin dark {\n @media (prefers-color-scheme: dark) {\n @content;\n }\n [data-theme=\"dark\"] & {\n @content;\n }\n}\n\n@mixin light {\n @media (prefers-color-scheme: light) {\n @content;\n }\n [data-theme=\"light\"] & {\n @content;\n }\n}\n\n@mixin sepia {\n [data-theme=\"sepia\"] & {\n @content;\n }\n}\n",".container {\n display: flex;\n flex-direction: column;\n align-items: center;\n justify-content: center;\n height: 100vh;\n padding-block-start: 0;\n padding-block-end: 0;\n padding-inline-start: var(--spacing-small);\n padding-inline-end: var(--spacing-small);\n box-sizing: border-box;\n}\n\n.withFullWidth {\n width: 100vw;\n}\n\n.title {\n font-size: var(--font-size-jumbo);\n margin-block-end: var(--spacing-medium);\n text-align: center;\n line-height: normal;\n}\n\n.goBack {\n display: flex;\n justify-content: center;\n margin-block-start: var(--spacing-medium);\n}\n\n.reportBug {\n margin-block-start: var(--spacing-mega);\n}\n","@use \"src/styles/breakpoints\";\n\n.container {\n direction: ltr;\n}\n\n.title {\n font-size: var(--font-size-jumbo);\n text-align: center;\n font-weight: var(--font-weight-bold);\n}\n\n.backIconContainer {\n width: 100%;\n display: flex;\n align-items: center;\n justify-content: flex-start;\n [dir=\"rtl\"] & {\n justify-content: flex-end;\n }\n}\n"],"sourceRoot":""}
|