photo section scrollbar added

This commit is contained in:
surya 2022-04-06 14:01:26 +05:30
parent 451dbef6f1
commit ea7c4edb1c
6 changed files with 72 additions and 16019 deletions

Binary file not shown.

16045
ng6-seed/package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -116,7 +116,8 @@ export class AwsService {
observer.complete();
},
onFailure: function (err) { // error user login
alert('haiii')
console.log(err.message)
alert(err.message);
observer.error(err);
}

View File

@ -132,4 +132,38 @@ hr {
background: #d23f2f;
padding: 0.03em;
margin: -2px;
}
}
.paragraph_change {
color: #fff !important;
background-color: #e00201 !important;
}
::ng-deep { .no-padding > mat-dialog-container {
// background: black;
padding: 0;
// overflow-y: scroll !important;
}
}
.mat-dialog-content{
margin:0px !important;
}
// mat-placeholder{
// margin-top: 20px;
// word-wrap: break-word;
// }
// input{
// height:40px;
// }
.mat-form-field-label {
white-space: normal;
}
textarea.mat-input-element {
padding: 0px 0;
margin: 5px 0;
}
.mat-input-placeholder {
white-space: normal;
}

View File

@ -68,12 +68,16 @@ export class LoginComponent implements OnInit{
* AWS login service
*/
login() {
//alert('login - function')
const mailid = this.email.split(/\s/).join('');
let auth = { 'Username': mailid, 'Password': this.password };
// alert(auth)
this.loaderService.showMatSpinnerDialog('');
this.aws.dologin(auth).subscribe(res => {
// console.log("do login",res);
alert(res)
console.log("do login",res);
if (res !== undefined) {
this.getCommonSettings();
console.log('ressss');

View File

@ -20,6 +20,7 @@ export class LoaderService {
this.loaderSubject.next(<LoaderState>{ show: false });
}
showMatSpinnerDialog(message ?:String) {
console.log(message)
this.closeMatSpinnerDialog();
this.spinnerdialogRef = this.dialog.open(ProgressSpineerDialogComponent, {
data:message,