Skip to content

Commit fbe8cba

Browse files
committed
DOCS: Fix typos
1 parent b65bc96 commit fbe8cba

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ css based on node properties as shown in the example below.
7676
- `selector` (`string`, default `:root`) : css-selector the variables are rendered for
7777

7878
```
79-
prototype(Vendor.Site:CssPoroperties) < prototype(Neos.Fusion:Component) {
79+
prototype(Vendor.Site:CustomCssProperties) < prototype(Neos.Fusion:Component) {
8080
8181
renderer = Neos.Fusion:Tag
8282
tagName = 'script'
@@ -92,7 +92,7 @@ prototype(Vendor.Site:CssPoroperties) < prototype(Neos.Fusion:Component) {
9292
font = ${q(site).property('font')}
9393
bg = ${q(site).property('bgColor')}
9494
bg-lighter = ${Color.css(this.bg).lighten(20)}
95-
bg-transparent = ${Color.css(this.bg).lighten(20)}
95+
bg-transparent = ${Color.css(this.bg).fadeout(20)}
9696
}
9797
}
9898
@@ -103,11 +103,11 @@ prototype(Vendor.Site:CssPoroperties) < prototype(Neos.Fusion:Component) {
103103
//
104104
105105
mobile = PackageFactory.ColorHelper:CssVariables {
106-
mediaQuery = 'screem and (max-width: 600px)'
106+
mediaQuery = 'screen and (max-width: 600px)'
107107
values = Neos.Fusion:DataStructure {
108108
bg = ${q(site).property('bgColorMobile')}
109109
bg-lighter = ${Color.css(this.bg).lighten(20)}
110-
bg-transparent = ${Color.css(this.bg).lighten(20)}
110+
bg-transparent = ${Color.css(this.bg).fadeout(20)}
111111
}
112112
}
113113
}

0 commit comments

Comments
 (0)