InspectorView.css 508 B

1234567891011121314151617181920212223242526272829303132333435
  1. #InspectorView .PropertyPage {
  2. position: relative;
  3. width: 100%;
  4. height: 100%;
  5. }
  6. .formGrid {
  7. display: grid;
  8. align-items: center;
  9. grid-gap: 5px;
  10. }
  11. .formGrid-cols-1 {
  12. grid-template-columns: 1fr;
  13. }
  14. .formGrid-cols-2 {
  15. grid-template-columns: auto 1fr;
  16. }
  17. .formGrid-cols-4 {
  18. grid-template-columns: auto 1fr auto 1fr;
  19. }
  20. .formGrid-cols-5 {
  21. grid-template-columns: auto auto 1fr auto 1fr;
  22. }
  23. .formCheckbox {
  24. max-width: 2em;
  25. }
  26. .ImagePreviewFormArea {
  27. padding: 10px;
  28. }