Skip to content

Commit f2e5505

Browse files
authored
fix: cleanup spelling (#136)
1 parent c329300 commit f2e5505

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

content/project-structure/app-resources.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ contributors:
77

88
The App_Resources folder contains platform-specific resources of the application (icons, configuration files, native code, etc.). An application that supports both Android and iOS would therefore contain a subfolder for each platform.
99

10-
This page serves as a quick reference to understand how most settings in App_Resources affect behavior and the the look of a NativeScript app.
10+
This page serves as a quick reference to understand how most settings in App_Resources affect the behavior and the look of a NativeScript app.
1111

1212
## Android specific resources
1313

@@ -27,7 +27,7 @@ App_Resources/
2727
└─ ... more
2828
```
2929

30-
Values can be overriden on specific API levels by making the changes in the corresponding directories.
30+
Values can be overridden on specific API levels by making the changes in the corresponding directories.
3131

3232
### Android app display name
3333

@@ -62,7 +62,7 @@ To change the default color of the status bar, edit the `ns_primaryDark` color i
6262

6363
:::tip Note
6464

65-
The color will be applied on API21+ since lower API leves do not support custom status bar colors\*.
65+
The color will be applied on API21+ since lower API levels do not support custom status bar colors\*.
6666

6767
:::
6868

@@ -79,7 +79,7 @@ Various native elements have an accent color, which can be changed by setting th
7979

8080
:::tip Note
8181

82-
The color will be applied on API21+ since lower API leves do not support custom accent colors.
82+
The color will be applied on API21+ since lower API levels do not support custom accent colors.
8383

8484
:::
8585

content/project-structure/src/fonts.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,12 @@ Add a new css class (for example in [`app.css`](/project-structure/src/app-css-s
2525

2626
```css
2727
.font-albert-sans {
28-
font-family: "Albert Sans", "albert-sans-700";
28+
font-family: 'Albert Sans', 'albert-sans-700';
2929
font-weight: 700;
3030
}
3131

3232
.far {
33-
font-family: "Font Awesome 5 Free", "fa-regular-400";
33+
font-family: 'Font Awesome 5 Free', 'fa-regular-400';
3434
font-weight: 400;
3535
}
3636
```
@@ -66,7 +66,7 @@ In Vue, when using html entities like the char codes above, use the `.decode` mo
6666

6767
::: details Sizing font images
6868
Images have specific stretch options (`none`, `aspectFit`, `aspectFill`). Font icons on the other hand usually use `font-size` to control the size of the icon.
69-
When using an `Image`, you can control the size with `font-size`, but you need to set `stretch="none"` for it to take effect. Setting `stretch` to anything other than `none` will cause the icon to be streched by measuring the image.
69+
When using an `Image`, you can control the size with `font-size`, but you need to set `stretch="none"` for it to take effect. Setting `stretch` to anything other than `none` will cause the icon to be stretched by measuring the image.
7070
:::
7171

7272
If an icon doesn't appear, or renders unintended characters, make sure you are using the correct font family and weight.

0 commit comments

Comments
 (0)