Skip to content

Commit

Permalink
fix: add min height css var (#2233)
Browse files Browse the repository at this point in the history
  • Loading branch information
felix-ico authored Dec 22, 2023
1 parent 84e87ab commit 84cc37b
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
--left: 0;
--width: 100vw;
--height: auto;
--min-height: 25vh;
--position: fixed;
--background: var(--telekom-color-background-surface);
--background-variant-mobile: var(--telekom-color-background-canvas);
Expand Down Expand Up @@ -49,7 +50,7 @@
left: var(--left);
width: var(--width);
height: var(--height);
min-height: 25vh;
min-height: var(--min-height);
background: var(--background);
box-shadow: var(--shadow);
animation-duration: var(--duration);
Expand Down

0 comments on commit 84cc37b

Please sign in to comment.