Skip to content
This repository has been archived by the owner on Dec 21, 2023. It is now read-only.

Commit

Permalink
fix(bridge): Settings view overflow problem
Browse files Browse the repository at this point in the history
Signed-off-by: TannerGilbert <gilberttanner.work@gmail.com>
  • Loading branch information
TannerGilbert committed Jul 4, 2022
1 parent 7a17271 commit 228894a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
@@ -1,5 +1,5 @@
<div fxFlexFill>
<div fxFlex fxLayout="row">
<div fxFlex fxLayout="row" id="settings-view-flex-row">
<dt-menu class="submenu" aria-label="Keptn Settings Submenu" fxFlex="0 0 200px">
<dt-menu-group label="Project configuration">
<button dtMenuItem aria-label="Open project settings" routerLinkActive="active" routerLink="project">
Expand Down Expand Up @@ -37,7 +37,7 @@
</button>
</dt-menu-group>
</dt-menu>
<div fxFlex>
<div fxFlex="calc(100%-200px)">
<router-outlet></router-outlet>
</div>
</div>
Expand Down
Expand Up @@ -6,3 +6,7 @@
margin-right: -17px;
}
}

#settings-view-flex-row {
width: 100%;
}

0 comments on commit 228894a

Please sign in to comment.