Skip to content
This repository was archived by the owner on Oct 23, 2025. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions packages/react/src/components/UI/Container.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import { css } from '@stitches/core'
import { generateClassNames } from '../../../common/theming'
import { CLASS_NAMES, PREPENDED_CLASS_NAMES } from '../../constants'
import { Appearance } from '../../types'

const containerDefaultStyles = css({
Expand All @@ -9,8 +8,8 @@ const containerDefaultStyles = css({
variants: {
direction: {
horizontal: {
flexDirection: 'row',
margin: '4px 0',
display: 'grid',
gridTemplateColumns: 'repeat(auto-fit, minmax(48px, 1fr))',
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

maybe we should add this to the variables so anyone can change it easily?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

oh where?

},
vertical: {
flexDirection: 'column',
Expand Down