Skip to content
Snippets Groups Projects
Commit 420f1f52 authored by Jean-Laurent DUZANT's avatar Jean-Laurent DUZANT
Browse files

Merge branch 'fix/23981/develop' into 'develop'

[23981] Profil : sur un écran zoomé, les onglets sont "collé"

See merge request maarch/MaarchParapheur!214
parents 353e662d d1019735
No related branches found
No related tags found
No related merge requests found
......@@ -24,6 +24,7 @@ export class AppComponent {
debugMode: boolean;
showLeftContent: boolean = false;
showRightContent: boolean = false;
constructor(private translate: TranslateService,
public http: HttpClient,
public signaturesService: SignaturesContentService,
......@@ -53,10 +54,6 @@ export class AppComponent {
}
test() {
return true;
}
allowedRoute() {
const route = this.router.url.split('?')[0];
const allowedRoutes: string[] = ['/', '/login', '/forgot-password', '/update-password', '/password-modification'];
......
......@@ -78,7 +78,8 @@ export class SidebarComponent implements OnInit, AfterViewInit {
async openProfile() {
const modal = await this.modalController.create({
component: ProfileComponent,
cssClass: 'profileCss'
cssClass: 'profileCss',
backdropDismiss: false
});
await modal.present();
}
......
......@@ -92,8 +92,14 @@ input:read-only {
}
.profileCss {
--width: 40%;
--height: 65%;
@media screen and (min-width: 768px) and (min-height: 768px) {
--width: 56%;
--height: 600px
}
@media screen and (min-width: 768px) and (min-height: 600px) {
--width: 56%;
--height: 600px
}
}
.aboutUsCss {
......
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