yapp 2.1.4 → 2.1.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/example.js +12 -11
- package/lib/utilities/css.js +2 -2
- package/lib/utilities/scrollbarThickness.js +3 -2
- package/lib/yapp.js +9 -9
- package/package.json +1 -1
- package/src/utilities/css.js +1 -1
- package/src/utilities/scrollbarThickness.js +2 -1
- package/src/yapp.js +11 -10
package/README.md
CHANGED
|
@@ -301,7 +301,7 @@ In fact the above is just what the `renderYappStyles()` function does. In leavin
|
|
|
301
301
|
|
|
302
302
|
### Fancy scrollbars and hidden gutters
|
|
303
303
|
|
|
304
|
-
You can hide the gutter and enable fancy scrollbars with the `hiddenGutter` and `fancyScrollbars` JSX attributes, respectively. These can also be included as options. Fancy scrollbars have hidden tracks and thinner, rounded thumbs. They look something like old Mac scrollbars.
|
|
304
|
+
You can hide the gutter and enable fancy scrollbars with the `hiddenGutter` and `fancyScrollbars` JSX attributes, respectively. These can also be included as options. Fancy scrollbars have hidden tracks and thinner, rounded thumbs. They look something like old Mac scrollbars. Appearances will only differ on WebKit browsers such as Chrome and Safari because the styles make use of the `-webkit` prefix.
|
|
305
305
|
|
|
306
306
|
## Plugins
|
|
307
307
|
|