Skip to content

Commit

Permalink
fix(): fix to menu cuasing layout issue
Browse files Browse the repository at this point in the history
  • Loading branch information
owilliams320 committed Jul 22, 2024
1 parent 0e8e63e commit c4ddd46
Show file tree
Hide file tree
Showing 4 changed files with 48 additions and 48 deletions.
76 changes: 38 additions & 38 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 7 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@
"@angular/router": "17.1.0",
"@angular/material": "17.1.0",
"@angular/cdk": "17.1.0",
"@covalent/components": "8.13.0",
"@covalent/core": "8.13.0",
"@covalent/flavored-markdown": "8.13.0",
"@covalent/icons": "8.13.0",
"@covalent/markdown": "8.13.0",
"@covalent/markdown-navigator": "8.13.0",
"@covalent/tokens": "8.13.0",
"@covalent/components": "8.14.4",
"@covalent/core": "8.14.4",
"@covalent/flavored-markdown": "8.14.4",
"@covalent/icons": "8.14.4",
"@covalent/markdown": "8.14.4",
"@covalent/markdown-navigator": "8.14.4",
"@covalent/tokens": "8.14.4",
"@material/data-table": "15.0.0-canary.7f224ddd4.0",
"minimatch": "^9.0.3",
"rxjs": "^7.4.0",
Expand Down
2 changes: 1 addition & 1 deletion src/app/environment/overview/overview.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
(click)="onCreateNew()"
#createNewMenuTrigger
></cv-button>
<cv-menu fixed corner="BOTTOM_START" #createNewMenu>
<cv-menu corner="BOTTOM_START" #createNewMenu>
<cv-list-item [routerLink]="['/environments/' + sectionName + '/users/create']" style="width: 300px;">
<div class="select-container" >
Users
Expand Down
4 changes: 2 additions & 2 deletions src/app/home/home.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
>VantageCloud Lake dashboard</cv-typography
>

<div style="position: relative">
<div style="position: relative;">
<cv-button
id="org-primary-cta"
label="Create new"
Expand All @@ -15,7 +15,7 @@
(click)="onCreateNew()"
#createNewMenuTrigger
></cv-button>
<cv-menu #createNewMenu fixed corner="BOTTOM_START">
<cv-menu #createNewMenu corner="BOTTOM_START">
<cv-list-item
[routerLink]="['/environments', 'create']"
style="width: 300px"
Expand Down

0 comments on commit c4ddd46

Please sign in to comment.