Skip to content

Commit

Permalink
Disallow widgets to resize based on their content
Browse files Browse the repository at this point in the history
  • Loading branch information
pklaschka committed Jan 12, 2024
1 parent 10a3901 commit b3cd735
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
.widgetRenderer {
/* Initial state, gets overwritten through inline styles */
--id: loading;

/* Place the widget in the correct grid area */
grid-area: var(--id);

/* Disallow grid areas to resize based on content */
overflow: auto;
}

0 comments on commit b3cd735

Please sign in to comment.