UMN-LATIS / elevator-ui

UI for Elevator, a flexible digital asset repository
2 stars 0 forks source link

Add css class names to pages and components #259

Closed jxjj closed 9 months ago

jxjj commented 9 months ago

This adds class names to pages and components for custom style sheets.

For example, to hide the chip showing the number of views on the search results card:

.search-result-card .chip {
  display: none;
}

Note: these class names and (and custom css in general) should be used sparingly, as the name or DOM structure may change as the UI evolves.

On dev for testing.