[SOLVED] QExpansionItem (v1) limit rotation of expansion icon to 90 degrees (instead of 180)?
-
When an expansion item is opened, for some reason the disclosure icon rotates 180 degrees. Is there an easy way to limit this to 90 degrees?
-
Anyone have a clue?
-
ok, just add this to your app.styl file:
.rotate-180 { -webkit-transform: rotate3d(0, 0, 1, 90deg) /* rtl:ignore */; transform: rotate3d(0, 0, 1, 90deg) /* rtl:ignore */; }
-
Thank you for share your find
-
UGH recent changes to Quasar broke my css, I had to add this:
.rotate-180, .q-expansion-item__toggle-icon--rotated { -webkit-transform: rotate3d(0, 0, 1, 90deg) !important /* rtl:ignore */; transform: rotate3d(0, 0, 1, 90deg) !important /* rtl:ignore */; }