Skip to content

Commit

Permalink
v1.6
Browse files Browse the repository at this point in the history
  • Loading branch information
l00pinfinity committed Dec 2, 2022
1 parent c366502 commit 5482dc7
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/app/components/auth/login/login.page.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@
<div class="container-fluid">
<div class="row no-gutters">
<div class="col-lg-12">
<h1 class="font-weight-bold py-3 mx-5">Hello again</h1>
<h1 class="font-weight-bold py-3 mx-4">Sign In</h1>
<form [formGroup]="loginForm" class="p-4 p-md-5" (ngSubmit)="onLogin()">
<ion-text>Thank you for getting back to Devvscape :)</ion-text>
<ion-text>Welcome back! Please enter your details</ion-text>
<div class="form-row">
<div class="col-lg-7">
<ion-input type="text" class="form-control my-3 p-1" formControlName="usernameOrEmail"
Expand Down
2 changes: 1 addition & 1 deletion src/app/components/auth/signup/signup.page.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<div class="container-fluid">
<div class="row no-gutters">
<div class="col-lg-12">
<h1 class="font-weight-bold py-3 mx-5">Sign Up</h1>
<h1 class="font-weight-bold py-3 mx-4">Sign Up</h1>
<form [formGroup]="signupForm" class="p-4 p-md-5" (ngSubmit)="onSignUp()">
<ion-text>Let's get you all started and setup your profile :)</ion-text>
<div class="form-row">
Expand Down
2 changes: 1 addition & 1 deletion src/app/components/home/home.page.html
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@

<cdk-virtual-scroll-viewport class="ion-content-scroll-host" itemSize="40" minBufferPx="900" maxBufferPx="1350">
<ion-list *ngIf="images$" id="showImages">
<ion-card *cdkVirtualFor="let image of images$" class="memeCard" (click)="showActionSheet(image)">
<ion-card *cdkVirtualFor="let image of images$" class="memeCard">
<!--(click)="presentActionSheet()"-->
<ion-img app:LazyImg src="{{image.imageUrl}}" alt="{{image.id}}" loading="lazy" animated style="min-height: 35vh"></ion-img>
<ion-card-content>
Expand Down

0 comments on commit 5482dc7

Please sign in to comment.