Skip to content

Commit

Permalink
fix: height of form elements (#1434)
Browse files Browse the repository at this point in the history
Co-authored-by: Schottkyc137 <lukas2121@icloud.com>
  • Loading branch information
TheSlimvReal and Schottkyc137 authored Sep 19, 2022
1 parent 6b0a0b7 commit bbb736d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ $max-screen-width: $min-block-width + $margin-main-view-right + $margin-main-vie
@include adaptive-grid($min-block-width, $max-screen-width);
align-items: start;
position: relative;
height: calc(100vh - 240px);
max-height: calc(100vh - 240px);
overflow: auto;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@
// Mat chip list overflows a little bit without this hack
width: 98%;
padding-left: 1px;
// fixes the vertical centering of this component
margin-top: -12px;
}

.chip {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,7 @@
.clickable:hover {
text-decoration: underline;
}

:host {
display: inline-block;
}

0 comments on commit bbb736d

Please sign in to comment.