Skip to content

Commit

Permalink
Some fixes
Browse files Browse the repository at this point in the history
- Updated the folder-delete.component.html file to fix alignment issues and add margin-bottom to certain elements.
- Added styles to the folder-delete.component.scss file to remove margins from paragraph elements.
  • Loading branch information
sanioooook committed Dec 20, 2023
1 parent b88d4c2 commit 16e3cb1
Show file tree
Hide file tree
Showing 3 changed files with 2,988 additions and 2,389 deletions.
Original file line number Diff line number Diff line change
@@ -1,35 +1,35 @@
<h3 mat-dialog-title>{{'Are you sure you want to delete the folder' | translate}}?</h3>
<div mat-dialog-content>
<div class="d-flex flex-row justify-content-between">
<div class="d-flex flex-column">
<div class="d-flex flex-row justify-content-between mb-2">
<div class="d-flex flex-column justify-content-center">
<p>ID</p>
</div>
<div class="d-flex flex-column">
<div class="d-flex flex-column justify-content-center">
<strong>{{selectedFolderDto.id}}</strong>
</div>
</div>
<div class="d-flex flex-row justify-content-between">
<div class="d-flex flex-column">
<div class="d-flex flex-row justify-content-between mb-2" *ngIf="selectedFolderDto.createdAt">
<div class="d-flex flex-column justify-content-center">
<p>{{'Creation Date' | translate}}</p>
</div>
<div class="d-flex flex-column">
<div class="d-flex flex-column justify-content-center">
<strong><date-formatter [date]="selectedFolderDto.createdAt" [Format]="'datetime'"></date-formatter></strong>
</div>
</div>
<div class="d-flex flex-row justify-content-between">
<div class="d-flex flex-column">
<div class="d-flex flex-row justify-content-between mb-2">
<div class="d-flex flex-column justify-content-center">
<p>{{'Name' | translate}}</p>
</div>
<div class="d-flex flex-column">
<div class="d-flex flex-column justify-content-center">
<strong>{{selectedFolderDto.name}}</strong>
</div>
</div>
<div class="d-flex flex-row justify-content-between">
<div class="d-flex flex-column">
<div class="d-flex flex-row justify-content-between mb-2">
<div class="d-flex flex-column justify-content-center">
<p>{{'Description' | translate}}</p>
</div>
<div class="d-flex flex-column">
<strong>{{selectedFolderDto.description}}</strong>
<div class="d-flex flex-column justify-content-center">
<strong [innerHTML]="selectedFolderDto.description"></strong>
</div>
</div>
</div>
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
p {
margin-block-start: 0;
margin-block-end: 0;
}
Loading

0 comments on commit 16e3cb1

Please sign in to comment.