-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Stack component #48
Stack component #48
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could you change the casing of the code examples?
I'm referring to #39.
Thanks!
content/4.components/stack.md
Outdated
|
||
# Stack | ||
|
||
Stack is a layout utility component that makes it easy to stack elements together and apply a space between them. It composes the `Flex` component. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could Flex
be changed into CFlex
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Stack is a layout utility component that makes it easy to stack elements together and apply a space between them. It composes the `Flex` component. | |
Stack is a layout utility component that makes it easy to stack elements together and apply a space between them. It composes the `CFlex` component. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
A few changes and we are good to go!
content/4.components/stack.md
Outdated
|
||
# Stack | ||
|
||
Stack is a layout utility component that makes it easy to stack elements together and apply a space between them. It composes the `Flex` component. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Stack is a layout utility component that makes it easy to stack elements together and apply a space between them. It composes the `Flex` component. | |
Stack is a layout utility component that makes it easy to stack elements together and apply a space between them. It composes the `CFlex` component. |
content/4.components/stack.md
Outdated
```html | ||
<CStack :spacing="5"> | ||
<CBox :p="5" shadow="md" border-width="1px"> | ||
<CHeading>See the Vue</c-heading> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
<CHeading>See the Vue</c-heading> | |
<CHeading>See the Vue</CHeading> |
content/4.components/stack.md
Outdated
<CText :mt="4">Vue makes front-end development a breeze.</c-text> | ||
</CBox> | ||
<CBox :p="5" shadow="md" border-width="1px"> | ||
<CHeading>Go Nuxt!</c-heading> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
<CHeading>Go Nuxt!</c-heading> | |
<CHeading>Go Nuxt!</CHeading> |
content/4.components/stack.md
Outdated
<CText :mt="4">Vue makes front-end development a breeze.</c-text> | ||
</CBox> | ||
<CBox :p="5" shadow="md" border-width="1px"> | ||
<CHeading>Go Nuxt!</c-heading> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
<CHeading>Go Nuxt!</c-heading> | |
<CHeading>Go Nuxt!</CHeading> |
content/4.components/stack.md
Outdated
</CBox> | ||
<CBox :p="5" shadow="md" border-width="1px"> | ||
<CHeading>Go Nuxt!</c-heading> | ||
<CText :mt="4">Nuxt makes writing Vue even easier.</c-text> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
<CText :mt="4">Nuxt makes writing Vue even easier.</c-text> | |
<CText :mt="4">Nuxt makes writing Vue even easier.</CText> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good! Thanks for adding this! 🚀
Feat: stack component documentation