Skip to content

Commit 8bf23fb

Browse files
committed
minor adjustments
1 parent 2213124 commit 8bf23fb

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

tutorials/ui5-webcomponents-react-card/ui5-webcomponents-react-card.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ The heading area of the `Card` component is empty, this is because it didn't rec
105105
### Style your component
106106

107107
In this step, we will only apply [inline-styling](https://reactjs.org/docs/dom-elements.html#style).
108-
You can also style your component using CSS ([modules](https://github.com/css-modules/css-modules)) or even authoring tools like [JSS](https://cssinjs.org), but this and many more information regarding the styling approach of UI5 Web Components (for React) will be covered in [Tutorial 6](ui5-webcomponents-react-styling) of the tutorial series.
108+
You can also style your component using CSS ([modules](https://github.com/css-modules/css-modules)), but this and many more information regarding the styling approach of UI5 Web Components (for React) will be covered in [chapter six](ui5-webcomponents-react-styling) of the tutorial series.
109109

110110
The Card now spreads across the whole screen, this behavior is intended, so it takes up the whole space of its container.
111111

@@ -121,7 +121,7 @@ The Card now spreads across the whole screen, this behavior is intended, so it t
121121

122122
2. The content of the card is way too close to the border of the `Card`, so a `padding` is needed. You can define your own spacing, or use the standard SAP spacing variables. In this example we're using one of the global [CSS Variables](https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_cascading_variables/Using_CSS_custom_properties) from the [theming-base-content](https://github.com/SAP/theming-base-content) repo, which are already included when using UI5 Web Components.
123123

124-
The CSS Var in question is `--sapContent_Space_S` (`1rem`) and we're going to apply it via inline-style again:
124+
The CSS var in question is `--sapContent_Space_S` (`1rem`) and we're going to apply it via inline-style again:
125125

126126
```TypeScript / TSX
127127
<Text style={{padding: "var(--sapContent_Space_S)"}}>

tutorials/ui5-webcomponents-react-charts/ui5-webcomponents-react-charts.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ author_profile: https://github.com/Lukas742
1313

1414
## You will learn
1515
- How to install and import charts
16-
- Learn about charts in UI5 web components for React
16+
- Learn about charts in UI5 Web Components for React
1717
- How to add dynamic rendering
1818

1919
## Intro

0 commit comments

Comments
 (0)