mirror of
https://github.com/meshtastic/meshtastic.git
synced 2024-11-09 23:24:10 -08:00
minor fixes
This commit is contained in:
parent
2ee6a40939
commit
8c1e6b1960
|
@ -51,7 +51,6 @@ const TwoPointZero = (): JSX.Element => {
|
|||
<Dark>
|
||||
<img
|
||||
className="h-11 w-auto"
|
||||
it
|
||||
src="/design/logo/svg/Mesh_Logo_White.svg"
|
||||
alt="Meshtastic Logo"
|
||||
/>
|
||||
|
@ -59,7 +58,6 @@ const TwoPointZero = (): JSX.Element => {
|
|||
<Light>
|
||||
<img
|
||||
className="h-11 w-auto"
|
||||
it
|
||||
src="/design/logo/svg/Mesh_Logo_Black.svg"
|
||||
alt="Meshtastic Logo"
|
||||
/>
|
||||
|
@ -67,7 +65,10 @@ const TwoPointZero = (): JSX.Element => {
|
|||
</div>
|
||||
<div className="mt-20">
|
||||
<div>
|
||||
<a href="#" className="inline-flex space-x-4">
|
||||
<a
|
||||
href="https://github.com/meshtastic/firmware/releases"
|
||||
className="inline-flex space-x-4"
|
||||
>
|
||||
<span className="rounded bg-rose-50 px-2.5 py-1 text-sm font-semibold text-rose-500">
|
||||
What's new
|
||||
</span>
|
||||
|
|
|
@ -38,10 +38,10 @@ export const DownloadCard = ({
|
|||
) : (
|
||||
<div>
|
||||
<a href={url}>
|
||||
<img alt="img1" style={{ height: "4rem" }} src={imgUrl}></img>
|
||||
<img alt="img1" style={{ height: "4rem" }} src={imgUrl} />
|
||||
</a>
|
||||
<a href={url2}>
|
||||
<img alt="img2" style={{ height: "4rem" }} src={imgUrl2}></img>
|
||||
<img alt="img2" style={{ height: "4rem" }} src={imgUrl2} />
|
||||
</a>
|
||||
</div>
|
||||
)}
|
||||
|
@ -96,7 +96,7 @@ export const PlaceholderCard = (): JSX.Element => {
|
|||
backgroundColor: "gray",
|
||||
height: "3rem",
|
||||
display: "flex",
|
||||
jusifyContent: "center",
|
||||
justifyContent: "center",
|
||||
alignItems: "center",
|
||||
}}
|
||||
/>
|
||||
|
|
Loading…
Reference in a new issue