Skip to content

Commit

Permalink
DOCS: Fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
mficzel committed Jul 3, 2020
1 parent b65bc96 commit fbe8cba
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ css based on node properties as shown in the example below.
- `selector` (`string`, default `:root`) : css-selector the variables are rendered for

```
prototype(Vendor.Site:CssPoroperties) < prototype(Neos.Fusion:Component) {
prototype(Vendor.Site:CustomCssProperties) < prototype(Neos.Fusion:Component) {
renderer = Neos.Fusion:Tag
tagName = 'script'
Expand All @@ -92,7 +92,7 @@ prototype(Vendor.Site:CssPoroperties) < prototype(Neos.Fusion:Component) {
font = ${q(site).property('font')}
bg = ${q(site).property('bgColor')}
bg-lighter = ${Color.css(this.bg).lighten(20)}
bg-transparent = ${Color.css(this.bg).lighten(20)}
bg-transparent = ${Color.css(this.bg).fadeout(20)}
}
}
Expand All @@ -103,11 +103,11 @@ prototype(Vendor.Site:CssPoroperties) < prototype(Neos.Fusion:Component) {
//
mobile = PackageFactory.ColorHelper:CssVariables {
mediaQuery = 'screem and (max-width: 600px)'
mediaQuery = 'screen and (max-width: 600px)'
values = Neos.Fusion:DataStructure {
bg = ${q(site).property('bgColorMobile')}
bg-lighter = ${Color.css(this.bg).lighten(20)}
bg-transparent = ${Color.css(this.bg).lighten(20)}
bg-transparent = ${Color.css(this.bg).fadeout(20)}
}
}
}
Expand Down

0 comments on commit fbe8cba

Please sign in to comment.