Skip to content

Commit

Permalink
fix: Safari 12 rendering issue
Browse files Browse the repository at this point in the history
A CSS animation used to detect element rendering (by triggering an animation event) was triggering a weird rendering bug in Safari 12 where elements would sometimes be shown in wildly incorrect positions. This is now fixed.

Fixes #110
  • Loading branch information
Haprog committed Jun 3, 2019
1 parent 4001ed5 commit ff55509
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vaadin-form-layout.html
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

@keyframes vaadin-form-layout-appear {
to {
opacity: 1;
opacity: 1 !important; /* stylelint-disable-line keyframe-declaration-no-important */
}
}

Expand Down

0 comments on commit ff55509

Please sign in to comment.