DependencyViewerWindow.uss 693 B

1234567891011121314151617181920212223242526272829
  1. /* General styling for the columns */
  2. .column {
  3. flex-grow: 1;
  4. flex-basis: 0; /* This ensures columns share space equally */
  5. padding: 10px;
  6. min-width: 200px; /* Prevent columns from getting too small */
  7. }
  8. /* Add a visual separator between the columns */
  9. .column:first-child {
  10. border-right-width: 1px;
  11. border-right-color: rgb(50, 50, 50);
  12. }
  13. /* Style for the header labels */
  14. .header-label {
  15. font-size: 14px;
  16. -unity-font-style: bold;
  17. margin-bottom: 5px;
  18. color: rgb(200, 200, 200);
  19. }
  20. /* Style for the ListViews that will show the assets */
  21. .list-view {
  22. flex-grow: 1;
  23. border-width: 1px;
  24. border-color: rgb(50, 50, 50);
  25. border-radius: 3px;
  26. }