Skip to content

Commit 928342a

Browse files
committed
fix: build
1 parent a578f5b commit 928342a

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

packages/app-portal/src/systems/Core/components/Header.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ export function Header() {
7474
);
7575
}
7676

77-
export const styles = tv({
77+
const styles = tv({
7878
slots: {
7979
menuItem: 'pointer',
8080
},

packages/app-portal/src/systems/Core/components/Layout.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ export const Layout: LayoutComponent = ({ title, children }: LayoutProps) => {
6868

6969
Layout.Content = Content;
7070

71-
export const styles = tv({
71+
const styles = tv({
7272
slots: {
7373
root: 'w-screen h-screen overflow-hidden absolute',
7474
// TODO: add scrollable in scrollView

packages/app-portal/src/systems/Ecosystem/pages/Ecosystem.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ export function Ecosystem() {
2424

2525
return (
2626
<Layout {...animations.slideInTop()}>
27-
<Layout.Content css={{ padding: '$16 $1 $4 $4' }}>
27+
<Layout.Content className="pt-16 pr-1 pb-4 pl-4">
2828
<Box.Stack gap="$12" grow={1} css={styles.content}>
2929
<Box.Flex css={styles.headingWrapper}>
3030
<Box.Stack gap="$2" wrap="wrap">

0 commit comments

Comments
 (0)