Skip to content

Commit

Permalink
Fix main page width on ssr
Browse files Browse the repository at this point in the history
  • Loading branch information
akariv committed Dec 28, 2023
1 parent 609a0b5 commit 63c6688
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
></app-bk-header>
<div class='scrollable'>
<div class='app'>
<div class='main' id='main' [style.width]='maxWidth() + "px"'>
<div class='main' id='main' [style.width]='maxWidth() ? maxWidth() + "px" : "100%"'>
<ng-content></ng-content>
</div>
<div class='list' *ngIf='showListView()'>
Expand Down

0 comments on commit 63c6688

Please sign in to comment.