Skip to content

Commit

Permalink
fix max-width for full width container
Browse files Browse the repository at this point in the history
  • Loading branch information
winkerVSbecks committed Jul 12, 2024
1 parent 02dfc79 commit f3c3171
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,14 @@ https://tetra.chromatic.com
## Install

```console
yarn add @chromaui/tetra
yarn add @chromatic-com/tetra
```

## To Do

- [ ] Replace fonts in Text by the new text helpers
- [ ] Move icons to a new library and import it as primitive inside the Icon component


## Developing

Watch and rebuild code with `tsup` and runs Storybook to preview your UI during development.
Expand Down
2 changes: 1 addition & 1 deletion src/Container/Container.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ const FullWidthInner = styled.div`
const FullWidthOuter = styled(BlockWithOptionsForContainer)`
margin-left: auto;
margin-right: auto;
max-width: 1800px;
max-width: 1440px;
`;

export const FullWidthContainer = ({
Expand Down
6 changes: 3 additions & 3 deletions src/_docs/typography.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ The easiest way to display text is by using the `Text` component. It's a wrapper

<Source
dark
code={`import { Text } from '@chromaui/tetra';
code={`import { Text } from '@chromatic-com/tetra';
// By default the Text component doesn't require any props
Expand All @@ -39,7 +39,7 @@ You can use our responsive object format to change the size of the text dependin

<Source
dark
code={`import { Text } from '@chromaui/tetra';
code={`import { Text } from '@chromatic-com/tetra';
// Here, we are setting the size of the text to 16px on mobile,
// 20px on tablet and 32px on desktop. Base is to tell what size
Expand All @@ -62,7 +62,7 @@ If you want more flexibility, you can use our style helpers to create your own t

<Source
dark
code={`import { typography } from '@chromaui/tetra';
code={`import { typography } from '@chromatic-com/tetra';
const Heading = styled.h1\`
\ \ \${typography.heading32}
Expand Down

0 comments on commit f3c3171

Please sign in to comment.