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

fix(bridge): Settings view overflow problem #8291

Merged
merged 1 commit into from Jul 5, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
@@ -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%;
}