Skip to content
This repository has been archived by the owner on Jan 8, 2025. It is now read-only.

Commit

Permalink
Resolved non-responsive layout for Apt installation steps on Download…
Browse files Browse the repository at this point in the history
…s page (#30)

* Resolved non-responsive layout for Apt installation steps on Downloads page

* Remove the prettier formatted code
  • Loading branch information
Aribaskar-jb authored Dec 25, 2023
1 parent 102e7d2 commit 954e8ff
Showing 1 changed file with 18 additions and 10 deletions.
28 changes: 18 additions & 10 deletions src/pages/downloads.js
Original file line number Diff line number Diff line change
Expand Up @@ -195,15 +195,23 @@ export default function Downloads({ latestVersion, releaseDate }) {
<p className="text-gray-500 mt-2">
To install via Apt, follow these steps:
</p>
<pre className="bg-gray-100 text-gray-700 rounded px-4 py-2 mt-4" style={{fontSize: 14}}>
sudo mkdir -p /etc/apt/keyrings <br />
sudo gpg --no-default-keyring --keyring /etc/apt/keyrings/bruno.gpg --keyserver keyserver.ubuntu.com --recv-keys 9FA6017ECABE0266 <br /><br />

echo "deb [signed-by=/etc/apt/keyrings/bruno.gpg] http://debian.usebruno.com/ bruno stable" | sudo tee /etc/apt/sources.list.d/bruno.list <br /> <br />

sudo apt update <br />
sudo apt install bruno
</pre>
<div style={{width: "fit-content"}}>
<pre
className="bg-gray-100 text-gray-700 rounded px-4 py-2 mt-4"
style={{ fontSize: 14, width: "fit-content",whiteSpace:"pre-wrap",wordWrap:"break-word",textAlign:"justify" }}
>
sudo mkdir -p /etc/apt/keyrings <br />
sudo gpg --no-default-keyring --keyring
/etc/apt/keyrings/bruno.gpg --keyserver keyserver.ubuntu.com
--recv-keys 9FA6017ECABE0266 <br />
<br />
echo "deb [signed-by=/etc/apt/keyrings/bruno.gpg]
http://debian.usebruno.com/ bruno stable" | sudo tee
/etc/apt/sources.list.d/bruno.list <br /> <br />
sudo apt update <br />
sudo apt install bruno
</pre>
</div>
</div>
</TabPanel>

Expand Down Expand Up @@ -272,4 +280,4 @@ export default function Downloads({ latestVersion, releaseDate }) {
<Footer/>
</div>
);
};
};

1 comment on commit 954e8ff

@vercel
Copy link

@vercel vercel bot commented on 954e8ff Dec 25, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.