Skip to content

Commit 3a925ee

Browse files
committed
update spacing with tabs
1 parent d0cdeb0 commit 3a925ee

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

src/routes/getting-started/installation.mdx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,10 @@ Create the source directory and core application files:
100100
mkdir src
101101
```
102102

103-
Create `src/index.jsx`:
103+
Once the `src` directory is created, you can create the following files:
104+
- `src/index.jsx` - Application entry point
105+
- `src/App.jsx` - Root component
106+
- `src/index.css` - Global styles
104107

105108
```jsx tab title="src/index.jsx"
106109
/* @refresh reload */

src/ui/tabs.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ export type TabsProps = PolymorphicProps<
1313
>;
1414

1515
export function Tabs(props: TabsProps) {
16-
return <KobalteTabs {...props} />;
16+
return <KobalteTabs class="mt-6" {...props} />;
1717
}
1818

1919
export type TabListProps = PolymorphicProps<

0 commit comments

Comments
 (0)