@xenide-io/the-old-ui-theme 0.4.3 → 0.4.4
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/suite.js
CHANGED
|
@@ -144,7 +144,7 @@ function TodayPageFrame({ children }) {
|
|
|
144
144
|
]
|
|
145
145
|
}
|
|
146
146
|
),
|
|
147
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("div", { className: "relative flex-1 px-4 pb-
|
|
147
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("div", { className: "relative flex-1 px-4 pb-5 pt-2 sm:px-6 sm:pb-6 sm:pt-3 lg:px-8 [&_.list-row]:min-h-[52px] [&_.list-row]:sm:min-h-[44px]", children })
|
|
148
148
|
]
|
|
149
149
|
}
|
|
150
150
|
);
|
|
@@ -2070,7 +2070,7 @@ function SuitePage({
|
|
|
2070
2070
|
"mx-auto flex w-full min-w-0 flex-col",
|
|
2071
2071
|
WIDTHS[width],
|
|
2072
2072
|
// Tight inset keeps page titles aligned without excessive whitespace.
|
|
2073
|
-
inset && "px-4 pb-
|
|
2073
|
+
inset && "px-4 pb-5 pt-2 sm:px-6 sm:pb-6 sm:pt-3 lg:px-8",
|
|
2074
2074
|
className
|
|
2075
2075
|
),
|
|
2076
2076
|
children
|
|
@@ -2109,7 +2109,7 @@ function SuitePageHeader({
|
|
|
2109
2109
|
{
|
|
2110
2110
|
"data-test": dataTest,
|
|
2111
2111
|
className: cn(
|
|
2112
|
-
"flex items-start justify-between gap-4 pb-
|
|
2112
|
+
"flex items-start justify-between gap-4 pb-2 sm:pb-3",
|
|
2113
2113
|
className
|
|
2114
2114
|
),
|
|
2115
2115
|
children: [
|
package/dist/suite.mjs
CHANGED
|
@@ -32,7 +32,7 @@ function TodayPageFrame({ children }) {
|
|
|
32
32
|
]
|
|
33
33
|
}
|
|
34
34
|
),
|
|
35
|
-
/* @__PURE__ */ jsx("div", { className: "relative flex-1 px-4 pb-
|
|
35
|
+
/* @__PURE__ */ jsx("div", { className: "relative flex-1 px-4 pb-5 pt-2 sm:px-6 sm:pb-6 sm:pt-3 lg:px-8 [&_.list-row]:min-h-[52px] [&_.list-row]:sm:min-h-[44px]", children })
|
|
36
36
|
]
|
|
37
37
|
}
|
|
38
38
|
);
|
|
@@ -1849,7 +1849,7 @@ function SuitePage({
|
|
|
1849
1849
|
"mx-auto flex w-full min-w-0 flex-col",
|
|
1850
1850
|
WIDTHS[width],
|
|
1851
1851
|
// Tight inset keeps page titles aligned without excessive whitespace.
|
|
1852
|
-
inset && "px-4 pb-
|
|
1852
|
+
inset && "px-4 pb-5 pt-2 sm:px-6 sm:pb-6 sm:pt-3 lg:px-8",
|
|
1853
1853
|
className
|
|
1854
1854
|
),
|
|
1855
1855
|
children
|
|
@@ -1888,7 +1888,7 @@ function SuitePageHeader({
|
|
|
1888
1888
|
{
|
|
1889
1889
|
"data-test": dataTest,
|
|
1890
1890
|
className: cn(
|
|
1891
|
-
"flex items-start justify-between gap-4 pb-
|
|
1891
|
+
"flex items-start justify-between gap-4 pb-2 sm:pb-3",
|
|
1892
1892
|
className
|
|
1893
1893
|
),
|
|
1894
1894
|
children: [
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xenide-io/the-old-ui-theme",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.4",
|
|
4
4
|
"description": "Props-driven React components and theme tokens inspired by classic interface design — optimized for Next.js apps and internal tools.",
|
|
5
5
|
"author": "Xenide",
|
|
6
6
|
"license": "MIT",
|
|
@@ -91,7 +91,7 @@ export function SuitePage({
|
|
|
91
91
|
'mx-auto flex w-full min-w-0 flex-col',
|
|
92
92
|
WIDTHS[width],
|
|
93
93
|
// Tight inset keeps page titles aligned without excessive whitespace.
|
|
94
|
-
inset && 'px-4 pb-
|
|
94
|
+
inset && 'px-4 pb-5 pt-2 sm:px-6 sm:pb-6 sm:pt-3 lg:px-8',
|
|
95
95
|
className,
|
|
96
96
|
)}
|
|
97
97
|
>
|
|
@@ -146,7 +146,7 @@ export function SuitePageHeader({
|
|
|
146
146
|
<header
|
|
147
147
|
data-test={dataTest}
|
|
148
148
|
className={cn(
|
|
149
|
-
'flex items-start justify-between gap-4 pb-
|
|
149
|
+
'flex items-start justify-between gap-4 pb-2 sm:pb-3',
|
|
150
150
|
className,
|
|
151
151
|
)}
|
|
152
152
|
>
|
|
@@ -20,7 +20,7 @@ export function TodayPageFrame({ children }: { children: ReactNode }) {
|
|
|
20
20
|
<div className="today-page-frame__cloud today-page-frame__cloud--2 absolute -right-20 top-40 h-72 w-80 rounded-[40%]" />
|
|
21
21
|
<div className="today-page-frame__cloud today-page-frame__cloud--3 absolute left-[28%] top-[58%] h-64 w-[22rem] rounded-[50%]" />
|
|
22
22
|
</div>
|
|
23
|
-
<div className="relative flex-1 px-4 pb-
|
|
23
|
+
<div className="relative flex-1 px-4 pb-5 pt-2 sm:px-6 sm:pb-6 sm:pt-3 lg:px-8 [&_.list-row]:min-h-[52px] [&_.list-row]:sm:min-h-[44px]">
|
|
24
24
|
{children}
|
|
25
25
|
</div>
|
|
26
26
|
</div>
|