Skip to content

Commit

Permalink
docs: remove norun from code block
Browse files Browse the repository at this point in the history
  • Loading branch information
yanmariomenev committed Jul 5, 2024
1 parent d18f1f1 commit 4409a24
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions packages/fluent/docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ To include the Segoe UI font in your project, follow these steps:
2. Add the downloaded font files to your project's assets folder. {% platform_content angular %} For Angular, make sure that the folder is included in the assets section of the `angular.json` file. {% endplatform_content %} {% platform_content react %} For React, make sure that the folder is included in the `public` directory. {% endplatform_content %}{% platform_content vue %} For Vue, make sure that the folder is included in the `public` directory. {% endplatform_content %}
3. In your HTML file or global style sheet, add the following code to include the font:
```html-no-run
```html
<style>
@font-face {
font-family: 'Segoe UI';
Expand All @@ -58,7 +58,7 @@ Make sure to replace the path in the `url` property with the actual path to the
4. Finally, update the CSS code in your file to use the Segoe UI font:
```html-no-run
```html
<style>
body { font-family: "Segoe UI", sans-serif; }
</style>
Expand All @@ -72,15 +72,15 @@ The Kendo UI Fluent theme utilizes [CSS custom properties (variables)](https://d

The Kendo UI Fluent theme exposes root variables that are globally available:

```html-no-run
```html
<style>
:root { --kendo-font-size: 20px; }
</style>
```

As well as variables targeting specific components:

```html-no-run
```html
<style>
.k-button { --kendo-button-bg: hotpink; }
</style>
Expand Down

0 comments on commit 4409a24

Please sign in to comment.