Skip to content

Commit

Permalink
fix: typos
Browse files Browse the repository at this point in the history
  • Loading branch information
BernhardBaumrock committed Apr 2, 2023
1 parent 24babf9 commit 92672ea
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/asset-tools/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ $rockfrontend->styles('baz')

Note that only the `head` scripts and styles will be rendered automatically. They will be rendered into the `<head>` of your website.

RockFrontend will hook into `Page::render` and inject all styles and scripts that you added to your `head` arrays (using either `scripts()->add(...)` or `styles()->head(...)`).
RockFrontend will hook into `Page::render` and inject all styles and scripts that you added to your `head` arrays (using either `scripts()->add(...)` or `styles()->add(...)`).

All other AssetArrays can be rendered manually wherever you want:

Expand Down
4 changes: 2 additions & 2 deletions docs/postcss/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ Here we add a vertical padding of 20px on mobile and 100px on desktop.
By default RockFrontend will use `360px` as the mobile screen with and `1440px` as desktop screen with. You can adjust these settings in your `config.php`:

```php
$this->wire->config->growMin = 250;
$this->wire->config->growMax = 1920;
$config->growMin = 250;
$config->growMax = 1920;
```

You can also provide the min/max settings directly in the method call:
Expand Down

0 comments on commit 92672ea

Please sign in to comment.