Skip to content

Commit 3d1eb7b

Browse files
fix: restores images
1 parent 9960e39 commit 3d1eb7b

File tree

11 files changed

+71
-6
lines changed

11 files changed

+71
-6
lines changed
Loading
Loading
Loading

libs/dashboard/feature-info/src/lib/components/my-cards/my-cards.component.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ <h2 class="text-2xl font-semibold text-gray-800 mb-6 text-left">Meus Cartões</h
77
<!-- Loop para cada cartão -->
88
<div *ngFor="let cartao of cartoes" class="relative rounded-xl shadow-lg">
99
<!-- Fundo com os pixels -->
10-
<div class="absolute inset-0 bg-gray-background mx-4 rounded-lg">
10+
<div class="absolute inset-0 bg-gray-background rounded-lg">
1111
<img
1212
class="absolute top-0 right-0 w-15 h-15"
1313
src="/assets/images/pixels-right-top.png"

libs/shared/ui-components/src/lib/header-dashboard/header-dashboard.component.html

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<header class="sticky shadow-xl top-0 bg-primary w-full flex justify-center items-center py-3 px-4 z-20">
2-
<div class="max-w-2xl w-full justify-end">
3-
<button class="sm:flex hidden hover:cursor-pointer" (click)="openModal()">
4-
<img src="/assets/icons/icon_menu.svg" alt="menu-button" class="h-8 w-8" />
2+
<div class="max-w-2xl w-full justify-end text-white">
3+
<button class="lg:hidden hover:cursor-pointer" (click)="openModal()">
4+
<span class="material-symbols-rounded">menu</span>
55
</button>
66
<div class="flex justify-end items-center text-white gap-x-5">
77
<h2>{{ email() }}</h2>

libs/shared/ui-components/src/lib/ui-modal/ui-modal.component.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
<div class="fixed z-50 top-0 left-0 right-0" [ngClass]="classNameExt()" aria-labelledby="modal-title" role="dialog" aria-modal="true">
22
<div class="fixed inset-0 z-10 w-screen overflow-y-auto">
33
<div class="flex min-h-full justify-center p-4 text-center items-center sm:p-0">
4-
<div class="relative transform overflow-hidden rounded-lg bg-background text-left shadow-xl transition-all sm:my-8 sm:w-full sm:max-w-lg p-4">
4+
<div class="relative bg-white transform overflow-hidden rounded-lg bg-background text-left shadow-xl transition-all sm:my-8 sm:w-full sm:max-w-lg p-4">
55
<div class="w-full flex justify-end">
66
<button class="pt-2 hover:cursor-pointer hover:brightness-75" (click)="closeModal()">
7-
<img width="14" height="14" src="./assets/icons/close_icon.svg" alt="close_modal_button_icon" />
7+
<span class="material-symbols-rounded">close</span>
88
</button>
99
</div>
1010
<div class="bg-background px-4 pb-4 pt-5 sm:p-6 sm:pb-4">
Loading
Loading
Loading
Loading

0 commit comments

Comments
 (0)