Skip to content

Commit bef6214

Browse files
authored
fix(plugin-basic-ui): remove will-change property (#482)
1 parent 4950732 commit bef6214

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

.changeset/ten-squids-yell.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@stackflow/plugin-basic-ui": patch
3+
---
4+
5+
fix(plugin-basic-ui): remove `will-change` property

extensions/plugin-basic-ui/src/components/AppBar.css.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,6 @@ export const appBar = recipe({
3838
{
3939
backgroundColor: globalVars.appBar.backgroundColor,
4040
zIndex: vars.zIndexes.appBar,
41-
willChange: "transform, opacity",
4241
transition: transitions(appBarCommonTransition),
4342
selectors: {
4443
[`${cupertino} &`]: {

extensions/plugin-basic-ui/src/components/AppScreen.css.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,6 @@ export const dim = style([
5757
{
5858
opacity: 0,
5959
zIndex: vars.zIndexes.dim,
60-
willChange: "opacity",
6160
selectors: {
6261
[`${android} &`]: {
6362
height: "10rem",
@@ -91,7 +90,6 @@ export const paper = recipe({
9190
display: "none",
9291
},
9392
zIndex: vars.zIndexes.paper,
94-
willChange: "transform",
9593
selectors: {
9694
[`${cupertino} &`]: {
9795
transform: "translate3d(100%, 0, 0)",

extensions/plugin-basic-ui/src/components/BottomSheet.css.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,6 @@ export const paper = style([
6262
backgroundColor: globalVars.backgroundColor,
6363
width: "100%",
6464
borderRadius: `${globalVars.bottomSheet.borderRadius} ${globalVars.bottomSheet.borderRadius} 0 0`,
65-
willChange: "transform, opacity",
6665
transform: "translate3d(0, 100%, 0)",
6766
opacity: 0,
6867
selectors: {

extensions/plugin-basic-ui/src/components/Modal.css.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,6 @@ export const paper = style([
6666
boxShadow:
6767
"0px 0.625rem 2.375rem rgba(0, 0, 0, 0.15), 0px .5625rem 2.875rem rgba(0, 0, 0, 0.12), 0px .3125rem .9375rem rgba(0, 0, 0, 0.1)",
6868
borderRadius: globalVars.modal.borderRadius,
69-
willChange: "transform, opacity",
7069
transform: "scale(1.1)",
7170
opacity: 0,
7271
selectors: {

0 commit comments

Comments
 (0)