Skip to content

Commit

Permalink
Merge pull request #86 from MeshAddicts/fix-2024090302
Browse files Browse the repository at this point in the history
next: add padding after nav bar icons
  • Loading branch information
kevinelliott authored Sep 4, 2024
2 parents 7c513ab + 390ae17 commit e09dd73
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions frontend/src/components/Layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ export const Layout = ({ children }: { children: React.ReactNode }) => {
src={`${import.meta.env.BASE_URL}images/icons/chat.svg`}
width="20"
height="20"
className="inline-block"
className="inline-block mr-2"
alt="chat icon"
style={{ verticalAlign: "middle" }}
/>
Expand All @@ -59,7 +59,7 @@ export const Layout = ({ children }: { children: React.ReactNode }) => {
src={`${import.meta.env.BASE_URL}images/icons/map.svg`}
width="20"
height="20"
className="inline-block"
className="inline-block mr-2"
alt="graph icon"
style={{ verticalAlign: "middle" }}
/>
Expand All @@ -72,7 +72,7 @@ export const Layout = ({ children }: { children: React.ReactNode }) => {
src={`${import.meta.env.BASE_URL}images/icons/map.svg`}
width="20"
height="20"
className="inline-block"
className="inline-block mr-2"
alt="map icon"
style={{ verticalAlign: "middle" }}
/>
Expand All @@ -85,7 +85,7 @@ export const Layout = ({ children }: { children: React.ReactNode }) => {
src={`${import.meta.env.BASE_URL}images/icons/node.svg`}
width="20"
height="20"
className="inline-block"
className="inline-block mr-2"
alt="node icon"
style={{ verticalAlign: "middle" }}
/>
Expand All @@ -98,7 +98,7 @@ export const Layout = ({ children }: { children: React.ReactNode }) => {
src={`${import.meta.env.BASE_URL}images/icons/neighbors.svg`}
width="20"
height="20"
className="inline-block"
className="inline-block mr-2"
alt="neighbors icon"
style={{ verticalAlign: "middle" }}
/>
Expand All @@ -111,7 +111,7 @@ export const Layout = ({ children }: { children: React.ReactNode }) => {
src={`${import.meta.env.BASE_URL}images/icons/stats.svg`}
width="20"
height="20"
className="inline-block"
className="inline-block mr-2"
alt="stats icon"
style={{ verticalAlign: "middle" }}
/>
Expand All @@ -124,7 +124,7 @@ export const Layout = ({ children }: { children: React.ReactNode }) => {
src={`${import.meta.env.BASE_URL}images/icons/telemetry.svg`}
width="20"
height="20"
className="inline-block"
className="inline-block mr-2"
alt="telemetry icon"
style={{ verticalAlign: "middle" }}
/>
Expand All @@ -137,7 +137,7 @@ export const Layout = ({ children }: { children: React.ReactNode }) => {
src={`${import.meta.env.BASE_URL}images/icons/route2.svg`}
width="20"
height="20"
className="inline-block"
className="inline-block mr-2"
alt="traceroutes icon"
style={{ verticalAlign: "middle" }}
/>
Expand Down

0 comments on commit e09dd73

Please sign in to comment.