Skip to content

Commit

Permalink
padronizar cores
Browse files Browse the repository at this point in the history
  • Loading branch information
RaissaAndradeS committed Dec 8, 2023
1 parent bf5b20f commit 831fac3
Showing 1 changed file with 20 additions and 14 deletions.
34 changes: 20 additions & 14 deletions src/app/pages/grid/grid.component.html
Original file line number Diff line number Diff line change
@@ -1,22 +1,27 @@
<p class="text-blue-brand padded-cell-day font-bold text-1xl">
{{ day }}
</p>
<div>
<div class="flex flex-col">
<div class="flex justify-center">
<div class="w-64 md:w-96 text-center">
<div class="flex flex-col gap-6">
<p class="text-blue-brand padded-cell-day text-left font-bold text-2xl">
{{ day }}
</p>

<p-progressSpinner *ngIf="loadingSchedule; else scheduleTable"></p-progressSpinner>

<ng-template #scheduleTable>
<div class="overflow-x-auto padded-cell">
<table>
<caption>
<div>
&nbsp;
</div>
</caption>
<div class="overflow-x-auto">
<table class="center-table my-6">
<caption></caption>
<thead>
<tr>
<th class="padded-cell" style="color: #3c3c3b;">Horário</th>
<th class="text-left" style="color: #3c3c3b;">Atividade</th>

</tr>
</thead>
<tbody>
<tr *ngFor="let item of schedule">
<td>{{ item.time }}</td>
<td>{{ item.activity }}</td>
<td class="padded-cell" style="color: #3c3c3b;">{{ item.time }}</td>
<td class="text-left">{{ item.activity }}</td>
</tr>
</tbody>
</table>
Expand All @@ -27,4 +32,5 @@
<button id="redirectBack" class="text-blue-brand px-4 py-2 rounded-md" (click)="redirectBack()">Voltar</button>
</div>
</div>
</div>
</div>

0 comments on commit 831fac3

Please sign in to comment.