@xenide-io/the-old-ui-theme 0.4.0 → 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/{chunk-KORWJCIO.mjs → chunk-54ZR4VL5.mjs} +691 -1686
- package/dist/chunk-G53YLHVE.mjs +1023 -0
- package/dist/index.mjs +78 -76
- package/dist/suite.js +495 -259
- package/dist/suite.mjs +94 -118
- package/dist/ui.mjs +13 -11
- package/package.json +1 -1
- package/src/suite/components/suite-layout.tsx +3 -5
- package/src/suite/components/suite-sidebar.tsx +11 -4
- package/src/suite/components/suite-user-menu.tsx +56 -75
- package/src/suite/components/today-page-frame.tsx +1 -1
- package/src/suite/lib/apps.ts +1 -1
|
@@ -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>
|
package/src/suite/lib/apps.ts
CHANGED
|
@@ -26,7 +26,7 @@ export const SUITE_APPS: readonly SuiteAppDefinition[] = [
|
|
|
26
26
|
slug: 'shellstack',
|
|
27
27
|
name: 'ShellStack',
|
|
28
28
|
description: 'Organisation and billing',
|
|
29
|
-
icon: '/
|
|
29
|
+
icon: '/icon-shellstack.svg',
|
|
30
30
|
landing: '/home',
|
|
31
31
|
baseUrlEnv: 'NEXT_PUBLIC_SHELLSTACK_URL',
|
|
32
32
|
baseUrlFallback: 'http://localhost:3002',
|