1234567891011121314151617181920212223242526272829 |
- /* General styling for the columns */
- .column {
- flex-grow: 1;
- flex-basis: 0; /* This ensures columns share space equally */
- padding: 10px;
- min-width: 200px; /* Prevent columns from getting too small */
- }
- /* Add a visual separator between the columns */
- .column:first-child {
- border-right-width: 1px;
- border-right-color: rgb(50, 50, 50);
- }
- /* Style for the header labels */
- .header-label {
- font-size: 14px;
- -unity-font-style: bold;
- margin-bottom: 5px;
- color: rgb(200, 200, 200);
- }
- /* Style for the ListViews that will show the assets */
- .list-view {
- flex-grow: 1;
- border-width: 1px;
- border-color: rgb(50, 50, 50);
- border-radius: 3px;
- }
|