Skip to content

Commit

Permalink
latest changes for login page
Browse files Browse the repository at this point in the history
  • Loading branch information
SGupta101 committed Oct 23, 2023
1 parent 6327401 commit a690a3b
Show file tree
Hide file tree
Showing 7 changed files with 20 additions and 11 deletions.
Binary file removed frontend/src/pages/Landing/Design.png
Binary file not shown.
8 changes: 5 additions & 3 deletions frontend/src/pages/Landing/Landing.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import Footer from './Footer';
import { logo } from '../../icons/other';
import dti from './dti.png';
import slope from './images/Slope.png';
import ellipse from './images/ellipse.png';

type LandingPropType = {
students: ReactElement;
Expand Down Expand Up @@ -33,9 +34,10 @@ const Landing = ({ students, admins }: LandingPropType) => {
Terms of Services
</a>
</div>
<div className={styles.image_container}>
<img src={slope} />
</div>
{/* <div className={styles.image_container}>
<img className={styles.image_overlay} src={ellipse} />
<img className={styles.image_base} src={slope} />
</div> */}
</div>

<div>
Expand Down
Binary file removed frontend/src/pages/Landing/campus.jpg
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
23 changes: 15 additions & 8 deletions frontend/src/pages/Landing/landing.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,24 @@
text-align: center;
padding: 0 1.25rem;
}
.image_container {
margin-top: 900px;

/* .image_container {
position: relative;
bottom: 0px;
left: 0px;
}
.image_overlay {
position: absolute;
width: 100%;
height: 0px;
display: flex;
justify-content: center;
align-items: center;
left: 30%;
z-index: 1;
}
.image_base {
position: absolute;
width: 100%;
z-index: 0;
} */

.main {
border: 1px solid black;
border-radius: 16px;
Expand Down

0 comments on commit a690a3b

Please sign in to comment.