Skip to content
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

docs(VSheets): normalize grammar and clarify markup #15092

Merged
merged 1 commit into from May 17, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 4 additions & 4 deletions packages/docs/src/pages/en/components/sheets.md
Expand Up @@ -11,13 +11,13 @@ related:

# Sheets

The `v-sheet` component is the baseline for numerous components such as [v-card](/components/cards/), [v-toolbar](/components/toolbars/), and more. The available properties form the foundation of Material Designthe concept of paper and elevation (shadows).
The `v-sheet` component is the baseline for numerous components such as [v-card](/components/cards/), [v-toolbar](/components/toolbars/), and more. The available properties form the foundation of Material Designthe concept of paper and elevation (shadows).

<entry-ad />

## Usage

The `v-sheet` component is a transformable piece of _paper_ that provides a basic foundation for Vuetify features. For example, properties such as **rounded** and **shaped** modify the `border-radius` property while **elevation** increase / decreases `box-shadow`.
The `v-sheet` component is a transformable piece of _paper_ that provides a basic foundation for Vuetify features. For example, properties such as **rounded** and **shaped** modify the `border-radius` property while **elevation** increases/decreases `box-shadow`.

<usage name="v-sheet" />

Expand All @@ -33,7 +33,7 @@ The `v-sheet` component is a transformable piece of _paper_ that provides a basi

#### Elevation

The `v-sheet` component accepts a custom elevation between **0 and 24** (0 is default). The *elevation* property modifies the `box-shadow` property. More information is located in the MD [Elevation Design Specification](https://material.io/design/environment/elevation.html).
The `v-sheet` component accepts a custom elevation between **0** and **24** (0 is default). The *elevation* property modifies the `box-shadow` property. More information is located in the MD [Elevation Design Specification](https://material.io/design/environment/elevation.html).

<example file="v-sheet/prop-elevation" />

Expand All @@ -47,7 +47,7 @@ The **rounded** prop adds a default `border-radius` of _4px_. By default, the `v

Sheets and components based on them can have different sizes and colors.

The `v-sheet` component accepts custom [Material Design Color](/styles/colors/) values such as `warning`, `amber darken-3`, and `deep-purple accent`as well as *rgb, rgba, and hexadecimal* values.
The `v-sheet` component accepts custom [Material Design Color](/styles/colors/) values such as `warning`, `amber darken-3`, and `deep-purple accent`as well as *rgb*, *rgba*, and *hexadecimal* values.

<example file="v-sheet/prop-color" />

Expand Down