Skip to content
Snippets Groups Projects
Commit e0d32819 authored by Alex ORLUC's avatar Alex ORLUC
Browse files

fix some css

parent c26037a4
No related branches found
No related tags found
No related merge requests found
......@@ -128,11 +128,6 @@
<div *ngIf="lockSignaturePad" style="background: #ffffffb3;position: absolute;top: 0;left: 0;width: 100%;height: 100%;"></div>
</div>
</ng-container>
<!--<canvas class="pdf-page-canvas" [ngClass]="{
'pdf-page-canvas':!renderingDoc,
'pdf-page-canvas-loading-doc':renderingDoc
}"
#canvas></canvas> -->
</div>
</section>
<div class="page-under">
......
......@@ -4,7 +4,6 @@
<div class="user">
Mon Profil
</div>
<canvas class="avatar" id="avatar"></canvas>
<div class="avatar" [ngStyle]="{'background': 'url(' + this.profileInfo.picture + ') no-repeat scroll center center / cover'}" (tap)="uploadFile.click();">
</div>
<input #uploadFile type="file" style="display:none;" (change)="handleFileInput($event.target.files)">
......
......@@ -54,6 +54,7 @@
}
.avatar {
cursor: pointer;
position: absolute;
/*background: url(../../assets/user_sample.svg) $primary;*/
width: 65px;
......@@ -64,6 +65,11 @@
background-size: cover;
background-repeat: no-repeat;
background-position: center;
transition: all 0.2s;
}
.avatar:active {
box-shadow: 0px 0px 5px 0px #656565;
}
......
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