We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a803ea1 commit 0c3b83bCopy full SHA for 0c3b83b
1 file changed
modules/dynamic/plugins/position.js
@@ -6,12 +6,13 @@ import type { PluginMetaData } from '../../../flowtypes/PluginMetaData'
6
export default function position(
7
property: string,
8
value: any,
9
+ style: Object,
10
{ browserName, cssPrefix, keepUnprefixed }: PluginMetaData
11
): ?Array<any> | ?any {
12
if (
13
property === 'position' &&
- value === 'sticky' &&
14
- (browserName === 'safari' || browserName === 'ios_saf')
+ value === 'sticky' &&
15
+ (browserName === 'safari' || browserName === 'ios_saf')
16
) {
17
return getPrefixedValue(cssPrefix + value, value, keepUnprefixed)
18
}
0 commit comments