Skip to content

Commit 55178fb

Browse files
committed
fix: correctly name utility
1 parent 5ea528f commit 55178fb

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

web/src/global.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
* Default max screen width is 1250px
3939
* Default min screen width is 375px
4040
*/
41-
--spacing-fluid-0-32: clamp(0px, calc(0px + (132 - 0) * (100vw - 375px) / (1250 - 375)), 132px);
41+
--spacing-fluid-0-132: clamp(0px, calc(0px + (132 - 0) * (100vw - 375px) / (1250 - 375)), 132px);
4242
--spacing-fluid-8-32-300: clamp(8px, calc(8px + (32 - 8) * (100vw - 300px) / (1250 - 300)), 32px);
4343
--spacing-fluid-16-30: clamp(16px, calc(16px + (30 - 16) * (100vw - 375px) / (1250 - 375)), 30px);
4444
--spacing-fluid-16-36-900: clamp(16px, calc(16px + (36 - 16) * (100vw - 900px) / (1250 - 900)), 36px);

web/src/pages/AllLists/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import ItemDisplay from "./ItemDisplay";
1010
import Breadcrumb from "./StyledBreadcrumb";
1111
import clsx from "clsx";
1212

13-
const landscapePaddingCalc = "lg:p-[48px_var(--spacing-fluid-0-32)_60px]";
13+
const landscapePaddingCalc = "lg:p-[48px_var(--spacing-fluid-0-132)_60px]";
1414

1515
const AllLists: React.FC = () => (
1616
<div

web/src/pages/Home/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ const Home: React.FC = () => {
1313
<div
1414
className={clsx(
1515
"w-full max-w-landscape mx-auto bg-klerosUIComponentsLightBackground px-4 pt-4 pb-10",
16-
`lg:px-fluid-0-32 lg:pb-[60px]`
16+
`lg:px-fluid-0-132 lg:pb-[60px]`
1717
)}
1818
>
1919
<Header />

web/src/pages/Settings/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ const Settings: React.FC = () => {
88
<div
99
className={clsx(
1010
"w-full max-w-landscape my-0 mx-auto pt-8 pb-10 px-4 bg-klerosUIComponentsLightBackground",
11-
"lg:px-fluid-0-32 lg:pt-12 lg:pb-16"
11+
"lg:px-fluid-0-132 lg:pt-12 lg:pb-16"
1212
)}
1313
>
1414
<Routes>

0 commit comments

Comments
 (0)