Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
basher committed Feb 18, 2025
2 parents 9b48b3b + b0468f2 commit d9b92df
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion UI/src/css/global/layout.css
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,12 @@ Based on https://every-layout.dev/layouts/sidebar/.
----------------------------------------------------------------------------
*/
.l-row {
--column-char-count: 50ch; /* Number of chars before column2 wraps */
--column1-width: fit-content;
--column2-min-width: 50%;
--column2-min-width: max(
var(--column-char-count),
calc(100% - var(--column1-width) - var(--column-gap))
);
--column-gap: calc(var(--space-4) * 2);

display: flex;
Expand Down

0 comments on commit d9b92df

Please sign in to comment.