frontend.css 401 B

123456789101112131415161718192021222324
  1. /**
  2. * Horizontal Layout
  3. */
  4. .fl-button-group-layout-horizontal .fl-button-group-buttons {
  5. display: flex;
  6. flex-wrap: wrap;
  7. }
  8. .fl-button-group-layout-horizontal .fl-button-wrap {
  9. display: inline-block;
  10. }
  11. /**
  12. * Vertical Layout
  13. */
  14. .fl-button-group-layout-vertical .fl-button-group-buttons {
  15. display: block;
  16. }
  17. .fl-button-group-layout-vertical .fl-button-wrap {
  18. display: block;
  19. }