Cleanup styles

This commit is contained in:
Kieran 2024-08-22 06:03:58 +01:00
parent 24eb444d2a
commit 0c44210d4a
No known key found for this signature in database
GPG Key ID: DE71CEB3925BE941
2 changed files with 15 additions and 10 deletions

View File

@ -52,17 +52,18 @@ export default function App() {
<h1>LNVPS</h1> <h1>LNVPS</h1>
<h1>VPS</h1> <h1>VPS</h1>
<div className="grid grid-cols-3 gap-2"> <div className="flex flex-col gap-2">
{offers.map(a => <VpsCard spec={a} />)} <div className="grid grid-cols-3 gap-2">
</div> {offers.map(a => <VpsCard spec={a} />)}
</div>
<br /> <div className="flex flex-col gap-4">
<b>Please email sales@lnvps.net after paying the invoice with your order id, desired OS and ssh key</b> <b>Please email sales@lnvps.net after paying the invoice with your order id, desired OS and ssh key</b>
<br /> <small>
<br /> All VPS come with 1x IPv4 and 1x IPv6 address and unmetered traffic.
<small> </small>
All VPS come with 1x IPv4 and 1x IPv6 address and unmetered traffic. </div>
</small> </div>
</div> </div>
) )
} }

View File

@ -31,4 +31,8 @@ h2 {
} }
h3 { h3 {
@apply text-lg font-medium my-2; @apply text-lg font-medium my-2;
}
a {
text-decoration: underline;
} }