Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,9 @@ ces mêmes breakpoints

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {

.listing {
margin-right: 2%;
}
}

/* Medium devices (landscape tablets, 768px and up) */
Expand Down
2 changes: 1 addition & 1 deletion src/app/components/standalone/account/account.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ export class AccountComponent implements OnInit{
() => {
// Communication de "false" à isConnectedSubject (authService) qui émet alors la nouvelle valeur (pour modif nav header en l'occurence)
this.authService.setIsConnected(false);
alert("Vous avez été déconnecté-e !")
alert("Votre compte est supprimé et vous avez été déconnecté-e ! Nous espérons vous revoir très prochainement sur PDFStream.")
this.router.navigate(["/"]);
// Modification de la valeur pour la clé "isAuthenticated" dans le localStorage + valeurs du user à ''
localStorage.removeItem('isAuthenticated');
Expand Down
19 changes: 13 additions & 6 deletions src/app/components/standalone/dashboard/dashboard.component.css
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,23 @@ section {
}

#compte-tab.nav-link.active {
color: var(--greytext);
}
#collection-tab.nav-link.active {
color: var(--greytext);
color: var(--lightRed);
text-shadow: 1px 1px 1px var(--lightRed), 0 0 2px var(--lightRed);
}

/* #collection-tab.nav-link.active {
color: var(--red);
text-shadow: 2px 2px;
} */

#partages-tab.nav-link.active {
color: var(--greytext);
color: var(--lightRed);
text-shadow: 1px 1px 1px var(--lightRed), 0 0 2px var(--lightRed);
}

#charte-tab.nav-link.active {
color: var(--greytext);
color: var(--lightRed);
text-shadow: 1px 1px 1px var(--lightRed), 0 0 2px var(--lightRed);
}

.account {
Expand Down
2 changes: 1 addition & 1 deletion src/app/components/standalone/shares/shares.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
<input matInput (keyup)="applyFilter($event)" placeholder="Search ..." #input>
</mat-form-field>

<mat-paginator [pageSizeOptions]="[7]"
<mat-paginator [pageSizeOptions]="[5]"
aria-label="Select page of periodic elements">
</mat-paginator>
</div>
Expand Down
1 change: 1 addition & 0 deletions src/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ html, body {
/* Variables root couleurs */
:root {
--red: #C0392B;
--lightRed: #c03a2b8a;
--white: #ffffff;
--skin: #F8C291;
--night: #34495E;
Expand Down