Skip to content

Commit

Permalink
Add changes in favorite and button
Browse files Browse the repository at this point in the history
  • Loading branch information
AntonioQuijanoB committed Apr 7, 2024
1 parent 479558f commit a070b2f
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 10 deletions.
1 change: 1 addition & 0 deletions src/app/feature/buttons/buttons.component.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
display: flex;
justify-content: space-around;
cursor: pointer;
max-width: 220px;
}
.corazonPartio {
cursor: pointer;
Expand Down
6 changes: 5 additions & 1 deletion src/app/feature/createcard/createcard.component.css
Original file line number Diff line number Diff line change
@@ -1 +1,5 @@

.sectionform {
display: flex;
justify-content: space-around;
align-items: center;
}
16 changes: 8 additions & 8 deletions src/app/feature/createcard/createcard.component.html
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<app-header>
<app-menu></app-menu>
</app-header>
<div class="image">
<img
src="../../../assets/img/cardtemplate.png"
alt="card-template"
width="300"
/>
</div>
<app-cu-form></app-cu-form>
<section class="sectionform">
<app-cu-form>
<img
src="../../../assets/img/cardtemplate.png"
alt="card-template"
width="200"
/></app-cu-form>
</section>
2 changes: 1 addition & 1 deletion src/app/feature/favoritecard/favoritecard.component.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@if(card){
<img [src]="card.imageUrl" [alt]="card.name" />
<img [src]="card.imageUrl" [alt]="card.name" width="220px" />
<app-buttons [card]="this.card"></app-buttons>
}

0 comments on commit a070b2f

Please sign in to comment.