Advertisement
Oscarobians

Rotate Bricks accordion

Apr 17th, 2024
436
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.35 KB | None | 0 0
  1. /*Make sure to replace the class names (except for .brx-open) with your respective class names*/
  2.  
  3. .brx-open .faq-accordion__icon {
  4.     rotate: 90deg;
  5.     color: red;
  6. }
  7.  
  8. .brx-open .faq-accordion__heading {
  9.     color: red;
  10. }
  11.  
  12. .faq-accordion__heading {
  13.     transition: color 0.2s
  14. }
  15.  
  16. .faq-accordion__icon {
  17.     transition: rotate 0.2s, color 0.2s;
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement