Skip to content

Commit

Permalink
Merge pull request #490 from 3YOURMIND/240-remove-british-english
Browse files Browse the repository at this point in the history
chore(@3yourmind/kotti-ui): Remove British English Typos
  • Loading branch information
FlorianWendelborn committed Sep 4, 2021
2 parents 1df82b7 + e750ada commit b9332b1
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion packages/documentation/pages/usage/components/banner.vue
Expand Up @@ -65,7 +65,7 @@ interface.

### Background

You can use `banner-grey` to change the banner's background color,
You can use `banner-gray` to change the banner's background color,
this style is useful when you want add contrast to the page.

<div class="element-example white">
Expand Down
2 changes: 1 addition & 1 deletion packages/documentation/pages/usage/components/steps.vue
Expand Up @@ -32,7 +32,7 @@ Each `KtStep` has four elements:
1. Indicator: The icon on the left, can be changed with the `icon` prop
2. Line: The line under the icon, if the step is last in the group, you may want to use `hideLine` to disable the line
3. Title: The bold text on the right side, given via `title` props.
4. Description: The grey text under tilte, given via `description` props.
4. Description: The gray text under title, given via `description` props.

## Steps

Expand Down
2 changes: 1 addition & 1 deletion packages/documentation/pages/usage/components/toaster.vue
Expand Up @@ -9,7 +9,7 @@ Toasters can deliver messages that the user needs to pay attention to without in

![Toaster Structure](~/assets/img/toaster_structure.png)

1. Type Colour: Depends on the type of toaster. There are three colors:
1. Type Color: Depends on the type of toaster. There are three colors:

- `Green-500`: for success information
- `Orange-500`: for warning message
Expand Down
4 changes: 2 additions & 2 deletions packages/documentation/pages/usage/utilities.vue
Expand Up @@ -8,15 +8,15 @@
<div class="element-example white">
<h4>Text Color</h4>
<div class="text-primary">Text Primary</div>
<div class="text-grey ">Text Grey</div>
<div class="text-gray ">Text Gray</div>
<div class="text-success">Text Succes</div>
<div class="text-error">Text Error</div>
<div class="text-warning">Text Warning</div>
</div>

```html
<div class="text-primary">Text Primary</div>
<div class="text-grey ">Text Grey</div>
<div class="text-gray ">Text Gray</div>
<div class="text-success">Text Succes</div>
<div class="text-error">Text Error</div>
<div class="text-warning">Text Warning</div>
Expand Down
2 changes: 1 addition & 1 deletion packages/kotti-ui/source/kotti-style/utilities/_text.scss
Expand Up @@ -12,7 +12,7 @@

$text-colors: (
text-primary: $primary-500,
text-grey: $lightgray-500,
text-gray: $lightgray-500,
text-success: $green-500,
text-error: $red-500,
text-warning: $orange-500,
Expand Down

0 comments on commit b9332b1

Please sign in to comment.