Skip to content
Snippets Groups Projects
Commit b83233eb authored by Hugo SUBTIL's avatar Hugo SUBTIL
Browse files

fix: layout issue on small components

parent f52eef06
No related branches found
No related tags found
2 merge requests!68Recette,!67Dev
<div fxLayout="column" class="content-container">
<div fxLayout="column" class="content-container full-screen">
<div class="section-container" fxLayout="column" fxLayoutAlign="center center">
<h1>Profil</h1>
<div *ngIf="userProfile" fxLayout="column" fxLayoutAlign="center" fxLayoutGap="10px">
......
<div fxLayout="column" class="content-container">
<div fxLayout="column" class="content-container full-screen">
<div class="section-container" fxLayout="colum" fxLayoutAlign="center center">
<p *ngIf="changeSuccess">
Vous avez correctement changé votre email associé a votre compte. Vous pouvez désormais vous reconnecter avec
......
<div fxLayout="column" class="content-container">
<div fxLayout="column" class="content-container full-screen">
<div class="section-container" fxLayout="column" fxLayoutAlign="center center">
<h1>Réinitialisation du mot de passe</h1>
<form *ngIf="!token" [formGroup]="resetForm" (ngSubmit)="onSubmit()">
......
<div fxLayout="column" class="content-container">
<div fxLayout="column" class="content-container full-screen">
<h1 style="display: none">Vérification du mail utilisateur</h1>
<div class="section-container" fxLayout="colum" fxLayoutAlign="center center">
<p *ngIf="!verificationSuccess && !verificationIssue">Votre email est en cours de vérification ...</p>
......
......@@ -6,6 +6,7 @@
@import 'assets/scss/icons';
@import 'assets/scss/inputs';
@import 'assets/scss/hyperlink';
@import 'assets/scss/layout';
@import '../node_modules/leaflet.locatecontrol/dist/L.Control.Locate.css';
html {
......@@ -68,6 +69,9 @@ a {
&.no-pt {
padding: 0 0 30px 0;
}
&.full-screen {
height: calc(100vh - #{$header-height} - #{$footer-height});
}
@media #{$phone} {
padding-top: 30px;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment