Skip to content

Commit

Permalink
fix(ui fixes for images and navbar)
Browse files Browse the repository at this point in the history
  • Loading branch information
soumyajit4419 committed Mar 17, 2022
1 parent 230e513 commit 7396dac
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 3 deletions.
12 changes: 10 additions & 2 deletions src/components/Home/Home.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,10 @@ function Home() {
<Row>
<Col md={7} className="home-header">
<h1 style={{ paddingBottom: 15 }} className="heading">
Hi There! <span className="wave" role="img" aria-labelledby="wave">👋🏻</span>
Hi There!{" "}
<span className="wave" role="img" aria-labelledby="wave">
👋🏻
</span>
</h1>

<h1 className="heading-name">
Expand All @@ -28,7 +31,12 @@ function Home() {
</Col>

<Col md={5} style={{ paddingBottom: 20 }}>
<img src={homeLogo} alt="home pic" className="img-fluid" />
<img
src={homeLogo}
alt="home pic"
className="img-fluid"
style={{ maxHeight: "450px" }}
/>
</Col>
</Row>
</Container>
Expand Down
5 changes: 4 additions & 1 deletion src/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,10 @@ html {
color: var(--imp-text-color) !important;
}

button:focus {
box-shadow: none !important;
}

/* --------- */
/* Preloader */
/* --------- */
Expand Down Expand Up @@ -86,7 +90,6 @@ html {
}

.navbar-toggler {
padding: 0.25rem 1.5rem !important;
position: relative !important;
background-color: transparent !important;
border-color: transparent !important;
Expand Down

0 comments on commit 7396dac

Please sign in to comment.