Skip to content

Commit

Permalink
Merge pull request #128 from FelipeMarques06/ultimoAjuste
Browse files Browse the repository at this point in the history
Ajustes finais
  • Loading branch information
FelipeMarques06 authored Feb 2, 2022
2 parents 80167b7 + cba1b84 commit 39187df
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 10 deletions.
2 changes: 1 addition & 1 deletion src/app/cdd/classes/classes.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@

<!-- Icone Genero-->
<ng-container matColumnDef="_idGenero">
<th mat-header-cell *matHeaderCellDef>Icones CDD</th>
<th mat-header-cell *matHeaderCellDef>Ícones CDD</th>
<td mat-cell *matCellDef="let generos">
<div class="example-button-container">
<button class="iconeCdd" mat-fab color="accent" aria-label="Example icon button with a bookmark icon" matTooltip="Acesse o gênero do livro" >
Expand Down
2 changes: 1 addition & 1 deletion src/app/criticas/critica/critica.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
<button mat-icon-button class="example-icon" aria-label="Example icon-button with sticky_note_2 icon" matTooltip="Crítica">
<mat-icon>sticky_note_2</mat-icon>
</button>
<span>NORMAS TÉCNICAS ABNT</span>
<span>CRÍTICAS LITERÁRIAS</span>
</mat-toolbar>
<mat-grid-list [cols]="breakpoint" rowHeight="200px" (window:resize)="handleSize($event)">
<mat-grid-tile *ngFor="let critica of criticas$ | async" [colspan]="critica.cols" [rowspan]="critica.rows">
Expand Down
4 changes: 2 additions & 2 deletions src/app/duvidas/duvidas.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -108,8 +108,8 @@
<table>
<tr>1. Acesse sua BookShelf;</tr>
<tr>2. Na lateral esquerda estará disponível uma aba de opções que você poderá navegar;</tr>
<tr>3. No <strong>Menu Principal</strong> estarão disponíveis a Classificação Decimal, Feed de Notícias, Especial do Mês, Dúvidas Frequentes e Erros Possíveis</tr>
<tr>4. Em <strong>Livros</strong> estarão disponíveis uma lista de livros de Artes, Direito, Empreendedorismo, Psicologia, Teatro, Tecnologia, Sagas Literárias e Sugestões</tr>
<tr>3. No <strong>Menu Principal</strong> estarão disponíveis a Classificação Decimal, Feed de Notícias, Especial do Mês, Dúvidas Frequentes, Possíveis Erros e Críticas Literárias.</tr>
<tr>4. Em <strong>Livros</strong> estarão disponíveis uma lista de livros de Artes, Empreendedorismo, Psicologia, Teatro, Tecnologia, Direito, Sagas Literárias e Sugestões.</tr>
<tr>5. Em <strong>Biblioteconomia</strong> estão disponíveis as Bibliotecas Virtuais, Base de Dados, Normas da ABNT e ISBN.</tr>
</table>
</mat-expansion-panel>
Expand Down
4 changes: 2 additions & 2 deletions src/app/sugestoes/sugestoes.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
</div>
<div class="grid-container" *ngIf="result$ | async as busca">
<mat-grid-list [cols]="breakpoint" rowHeight="180px" (window:resize)="handleSize($event)">
<mat-grid-tile *ngFor="let busca of result$ | async">
<mat-grid-tile *ngFor="let busca of result$ | async " [rowspan]="busca.rows">
<mat-card class="dashboard-card">
<mat-card-header>
<mat-card-title>{{busca.titulo}}</mat-card-title>
Expand All @@ -33,7 +33,7 @@
<span>SUGESTÕES DE LIVROS</span>
</mat-toolbar>
<mat-grid-list [cols]="breakpoint" rowHeight="180px" (window:resize)="handleSize($event)">
<mat-grid-tile *ngFor="let card of cards$ | async">
<mat-grid-tile *ngFor="let card of cards$ | async" [rowspan]="card.rows">
<mat-card class="dashboard-card">
<mat-card-header>
<!-- <div mat-card-avatar class="example-header-image"></div> -->
Expand Down
7 changes: 5 additions & 2 deletions src/app/teatro/teatro/teatro.component.scss
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
table {
width: 100%;
text-align: center;
}
.example-spacer {
flex: 1 1 auto;
Expand All @@ -15,6 +16,8 @@ table {
margin: 0.5rem;
}

.titulo{
margin-left: 350px;
.mat-header-cell{
text-transform: uppercase;
font-size: 15px;
text-align: center;
}
7 changes: 5 additions & 2 deletions src/app/tecnologia/tecnologia.component.scss
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
table {
width: 100%;
text-align: center;
}
.example-spacer {
flex: 1 1 auto;
Expand All @@ -15,6 +16,8 @@ table {
margin: 0.5rem;
}

.titulo{
margin-left: 350px;
.mat-header-cell{
text-transform: uppercase;
font-size: 15px;
text-align: center;
}

0 comments on commit 39187df

Please sign in to comment.