Skip to content

Commit

Permalink
fix: Use full width for project metadata dialog
Browse files Browse the repository at this point in the history
  • Loading branch information
MoritzWeber0 committed Dec 18, 2023
1 parent eb64a9d commit 851cf9a
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,9 @@
<div *ngIf="projectUserService.verifyRole('manager')"></div>
<div class="wrapper">
<mat-card id="metadata-card">
<h2 id="title">Description</h2>
<form [formGroup]="form">
<div>
<mat-form-field appearance="fill">
<mat-form-field appearance="fill" class="w-full max-w-lg">
<mat-label>Name</mat-label>
<input matInput formControlName="name" />
<mat-error *ngIf="form.controls.name.errors?.required"
Expand All @@ -26,7 +25,7 @@ <h2 id="title">Description</h2>
</mat-form-field>
</div>
<div>
<mat-form-field appearance="fill">
<mat-form-field appearance="fill" class="w-full max-w-lg">
<mat-label>Description</mat-label>
<textarea
formControlName="description"
Expand Down

0 comments on commit 851cf9a

Please sign in to comment.