Skip to content

Commit 7396dac

Browse files
committed
fix(ui fixes for images and navbar)
1 parent 230e513 commit 7396dac

2 files changed

Lines changed: 14 additions & 3 deletions

File tree

src/components/Home/Home.js

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,10 @@ function Home() {
1414
<Row>
1515
<Col md={7} className="home-header">
1616
<h1 style={{ paddingBottom: 15 }} className="heading">
17-
Hi There! <span className="wave" role="img" aria-labelledby="wave">👋🏻</span>
17+
Hi There!{" "}
18+
<span className="wave" role="img" aria-labelledby="wave">
19+
👋🏻
20+
</span>
1821
</h1>
1922

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

3033
<Col md={5} style={{ paddingBottom: 20 }}>
31-
<img src={homeLogo} alt="home pic" className="img-fluid" />
34+
<img
35+
src={homeLogo}
36+
alt="home pic"
37+
className="img-fluid"
38+
style={{ maxHeight: "450px" }}
39+
/>
3240
</Col>
3341
</Row>
3442
</Container>

src/style.css

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,10 @@ html {
1818
color: var(--imp-text-color) !important;
1919
}
2020

21+
button:focus {
22+
box-shadow: none !important;
23+
}
24+
2125
/* --------- */
2226
/* Preloader */
2327
/* --------- */
@@ -86,7 +90,6 @@ html {
8690
}
8791

8892
.navbar-toggler {
89-
padding: 0.25rem 1.5rem !important;
9093
position: relative !important;
9194
background-color: transparent !important;
9295
border-color: transparent !important;

0 commit comments

Comments
 (0)