custom.css 321 B

123456789101112131415161718192021222324252627282930
  1. 
  2. .flex-row{
  3. display: flex;
  4. flex-direction: row;
  5. }
  6. .flex-col{
  7. display: flex;
  8. flex-direction: column;
  9. }
  10. .flex-extend{
  11. flex: 1;
  12. }
  13. .flex-end{
  14. align-self: flex-end;
  15. }
  16. .hidden {
  17. display: none;
  18. }
  19. .disabled{
  20. pointer-events: none;
  21. }
  22. .ui-selected {
  23. background-color: #cce6ff !important;
  24. }