Skip to content

Commit

Permalink
fix: fix Aside height
Browse files Browse the repository at this point in the history
  • Loading branch information
MishaZhem committed Jul 12, 2024
1 parent 8525e7d commit cc145f6
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
</header>
<div [style.display]="'flex'">
<aside
[style.height.rem]="27"
class="AsideBar"
[tuiNavigationAside]="expanded"
>
<header>
Expand Down Expand Up @@ -144,4 +144,5 @@
</button>
</footer>
</aside>
<main class="show"></main>
</div>
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,11 @@
margin: 0;
padding: 0;
}

.show {
height: 200vh;
}

.AsideBar {
height: calc(100vh - 3rem);
}
3 changes: 3 additions & 0 deletions apps/taiga-lumbermill/src/styles.less
Original file line number Diff line number Diff line change
@@ -1 +1,4 @@
/* You can add global styles to this file, and also import other style files */
.root {
height: 100vh;
}

0 comments on commit cc145f6

Please sign in to comment.