Skip to content

Commit 105bd57

Browse files
committed
Fix invalid properties in rollup example fixture
1 parent 37d7340 commit 105bd57

File tree

1 file changed

+15
-13
lines changed

1 file changed

+15
-13
lines changed

apps/rollup-example/lotsOfStyles.js

+15-13
Original file line numberDiff line numberDiff line change
@@ -5273,7 +5273,7 @@ export const lotsOfStyles = [
52735273
},
52745274
icon: {
52755275
alignItems: 'center',
5276-
background:
5276+
backgroundImage:
52775277
'linear-gradient(0deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.1)), conic-gradient(from 180deg at 50% 50%, #FD4C4C -25.03deg, #F16770 27deg, #F8E968 85.5deg, #82F778 124.03deg, #4BFBFB 180.56deg, #6D7DFF 225.28deg, #FA05FF 273.66deg, #FD4C4C 334.97deg, #F16770 387deg)',
52785278
borderRadius: '100%',
52795279
display: 'flex',
@@ -45532,7 +45532,8 @@ export const lotsOfStyles = [
4553245532
height: '120%',
4553345533
},
4553445534
shortLine: {
45535-
background: 'linear-gradient(var(--divider), var(--card-background))',
45535+
backgroundImage:
45536+
'linear-gradient(var(--divider), var(--card-background))',
4553645537
height: '95%',
4553745538
marginStart: 3,
4553845539
width: 1,
@@ -122581,7 +122582,7 @@ export const lotsOfStyles = [
122581122582
userSelect: 'none',
122582122583
width: '100%',
122583122584
':after': {
122584-
background:
122585+
backgroundImage:
122585122586
'linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%)',
122586122587
bottom: '0',
122587122588
content: ' ',
@@ -122594,7 +122595,7 @@ export const lotsOfStyles = [
122594122595
zIndex: 1,
122595122596
},
122596122597
':before': {
122597-
background:
122598+
backgroundImage:
122598122599
'linear-gradient(280deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.2) 60%, rgba(0, 0, 0, 0.6) 100%)',
122599122600
content: ' ',
122600122601
height: '100%',
@@ -207678,7 +207679,7 @@ export const lotsOfStyles = [
207678207679
stylex.create({
207679207680
circle: {
207680207681
alignItems: 'center',
207681-
background: 'var(--base-blue)',
207682+
backgroundColor: 'var(--base-blue)',
207682207683
borderWidth: 1,
207683207684
borderStyle: 'solid',
207684207685
borderColor: 'var(--base-blue)',
@@ -235389,7 +235390,7 @@ export const lotsOfStyles = [
235389235390
stylex.create({
235390235391
container: {
235391235392
alignItems: 'center',
235392-
background:
235393+
backgroundImage:
235393235394
'linear-gradient(358.52deg, #0E7CEB 1.26%, #A10EEB 98.74%, #A10EEB 98.74%)',
235394235395
display: 'flex',
235395235396
},
@@ -245502,7 +245503,7 @@ export const lotsOfStyles = [
245502245503
postBackground: {
245503245504
alignItems: 'center',
245504245505
backdropFilter: 'blur(100px)',
245505-
background:
245506+
backgroundImage:
245506245507
'linear-gradient(180deg, rgba(149, 62, 193, 0.6) -234.46%, rgba(62, 131, 235, 0.6) 182.12%)',
245507245508
borderRadius: '18px',
245508245509
display: 'flex',
@@ -245515,7 +245516,7 @@ export const lotsOfStyles = [
245515245516
storyBackground: {
245516245517
alignItems: 'center',
245517245518
backdropFilter: 'blur(20px)',
245518-
background:
245519+
backgroundImage:
245519245520
'linear-gradient(180deg, #953EC1 -525.46%, #3E83EB 148.61%), rgba(255, 255, 255, 0.12)',
245520245521
borderRadius: '12px',
245521245522
display: 'flex',
@@ -249938,7 +249939,7 @@ export const lotsOfStyles = [
249938249939
privateBackground: {
249939249940
alignItems: 'center',
249940249941
backdropFilter: 'blur(20px)',
249941-
background:
249942+
backgroundImage:
249942249943
'linear-gradient(180deg, #953EC1 -525.46%, #3E83EB 148.61%), rgba(255, 255, 255, 0.12)',
249943249944
display: 'flex',
249944249945
flexDirection: 'column',
@@ -249950,7 +249951,8 @@ export const lotsOfStyles = [
249950249951
publicBackground: {
249951249952
alignItems: 'center',
249952249953
backdropFilter: 'blur(100px)',
249953-
background: 'linear-gradient(180deg, #953EC1 -234.46%, #3E83EB 182.12%)',
249954+
backgroundImage:
249955+
'linear-gradient(180deg, #953EC1 -234.46%, #3E83EB 182.12%)',
249954249956
display: 'flex',
249955249957
flexDirection: 'column',
249956249958
height: '158px',
@@ -364968,7 +364970,7 @@ export const lotsOfStyles = [
364968364970
unreadMention: {
364969364971
color: 'var(--wig-white);',
364970364972
fontSize: 'small',
364971-
background: 'linear-gradient(90deg, #2E85F2 0%, #1F69DC 100%)',
364973+
backgroundImage: 'linear-gradient(90deg, #2E85F2 0%, #1F69DC 100%)',
364972364974
width: '23px',
364973364975
height: '23px',
364974364976
borderRadius: '100%',
@@ -364993,7 +364995,7 @@ export const lotsOfStyles = [
364993364995
height: 10,
364994364996
width: 10,
364995364997
marginEnd: 4,
364996-
background: 'linear-gradient(90deg, #2E85F2 0%, #1F69DC 100%)',
364998+
backgroundImage: 'linear-gradient(90deg, #2E85F2 0%, #1F69DC 100%)',
364997364999
},
364998365000
}),
364999365001
stylex.create({
@@ -368732,7 +368734,7 @@ export const lotsOfStyles = [
368732368734
position: 'relative',
368733368735
},
368734368736
workroomCardImgShade: {
368735-
background:
368737+
backgroundImage:
368736368738
'linear-gradient(180deg, black 35%, transparent 55%, transparent 100%)',
368737368739
borderRadius: '12px',
368738368740
height: '100%',

0 commit comments

Comments
 (0)