Skip to content

Commit

Permalink
fix: fix border radii
Browse files Browse the repository at this point in the history
  • Loading branch information
jbrauck-unchained committed Oct 18, 2024
1 parent 8fc3ab8 commit a29413a
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions apps/coordinator/src/components/LandingPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -344,14 +344,14 @@ const LandingPage = () => {
className="responsive-image"
style={{
backgroundColor: "#FFE7BB",
padding: "20px",
padding: "40px",
borderRadius: "10px",
}}
>
<img
src="src/images/landing/stateless.png"
alt="Trezor"
style={{ height: "400px", width: "auto" }}
style={{ height: "400px", width: "auto", borderRadius: "10px" }}
/>
</div>
</ImageSection>
Expand All @@ -363,14 +363,14 @@ const LandingPage = () => {
className="responsive-image"
style={{
backgroundColor: "#FFE7BB",
padding: "20px",
padding: "40px",
borderRadius: "10px",
}}
>
<img
src="src/images/landing/xpubs.png"
alt="Trezor"
style={{ height: "400px", width: "auto" }}
style={{ height: "400px", width: "auto", borderRadius: "10px" }}
/>
</div>
</ImageSection>
Expand Down Expand Up @@ -408,14 +408,14 @@ const LandingPage = () => {
className="responsive-image"
style={{
backgroundColor: "#FFE7BB",
padding: "20px",
padding: "40px",
borderRadius: "10px",
}}
>
<img
src="src/images/landing/consensus.png"
alt="Trezor"
style={{ height: "400px", width: "auto" }}
style={{ height: "400px", width: "auto", borderRadius: "10px" }}
/>
</div>
</ImageSection>
Expand Down

0 comments on commit a29413a

Please sign in to comment.