Skip to content

Commit

Permalink
changed dti logo
Browse files Browse the repository at this point in the history
  • Loading branch information
pratyush1712 committed Aug 16, 2023
1 parent 5324aaa commit f7ab18c
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 17 deletions.
3 changes: 0 additions & 3 deletions frontend/src/icons/other/dti_desc.svg

This file was deleted.

1 change: 0 additions & 1 deletion frontend/src/icons/other/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ export { default as detailTrash } from './detailTrash.svg';
export { default as x } from './x.svg';
export { default as trashbig } from './trashbig.svg';
export { default as dti_logo } from './dti_logo.svg';
export { default as dti_desc } from './dti_desc.svg';
export { default as chevronLeft } from './chevron-left.svg';
export { default as block } from './blocked.svg';
export { default as red_trash } from './red-trash.svg';
Expand Down
6 changes: 3 additions & 3 deletions frontend/src/pages/Landing/Landing.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
import React, { ReactElement } from 'react';
import styles from './landing.module.css';
import Footer from '../../components/Footer/Footer';
import { logo, dti_logo, dti_desc } from '../../icons/other';
import { logo } from '../../icons/other';
import dti from './dti.png';

type LandingPropType = {
students: ReactElement;
Expand All @@ -27,8 +28,7 @@ const Landing = ({ students, admins }: LandingPropType) => {
</div>
</div>
<div className={styles.dti_container}>
<img src={dti_logo} className={styles.dti_logo} alt="DTI logo" />
<img src={dti_desc} className={styles.dti_desc} alt="DTI desc" />
<img src={dti} className={styles.dti_logo} alt="DTI Logo" />
</div>
</div>
</div>
Expand Down
Binary file added frontend/src/pages/Landing/dti.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
12 changes: 2 additions & 10 deletions frontend/src/pages/Landing/landing.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -49,16 +49,8 @@
}

.dti_logo {
width: 23px;
height: 23px;
left: 16px;
top: 15px;
margin-right: 7px;
}

.dti_desc {
width: 125px;
height: 26px;
width: 145px;
height: 30px;
left: 46px;
top: 14px;
}
Expand Down

0 comments on commit f7ab18c

Please sign in to comment.