Skip to content

Commit

Permalink
feat: add border styles to section-layout
Browse files Browse the repository at this point in the history
  • Loading branch information
apledger committed Nov 11, 2024
1 parent 4b424a9 commit 9902676
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ runtime.registerComponent(SectionLayout, {
label: 'Layouts / Section',
// icon: "accordion", TODO: (drew) add icon
props: {
className: Style(),
className: Style({ properties: [Style.Border, Style.BorderRadius] }),
children: Slot(),
containerSize: Select({
label: 'Container Size',
Expand Down
2 changes: 1 addition & 1 deletion core/vibes/soul/sections/section-layout/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export function SectionLayout({
containerSize?: 'lg' | 'xl' | '2xl';
}) {
return (
<section className={clsx('@container', className)}>
<section className={clsx('w-full @container', className)}>
<div
className={clsx(
'mx-auto px-4 py-10 @xl:px-6 @xl:py-14 @4xl:px-8 @4xl:py-20',
Expand Down

0 comments on commit 9902676

Please sign in to comment.