Skip to content

Commit

Permalink
Upload some CSS changes to prevent too much width happening
Browse files Browse the repository at this point in the history
  • Loading branch information
Novampr committed Sep 9, 2024
1 parent 7537398 commit 3f7a8f9
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/pages/404.astro
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import Card from '../components/Card.astro';
color: white;
font-size: 20px;
line-height: 1.6;
width: calc(100% - 2rem);
width: 90%;
}
h1 {
font-size: 3rem;
Expand Down
9 changes: 9 additions & 0 deletions src/pages/discord.astro
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,15 @@ import Layout from '../layouts/Layout.astro';
</Layout>

<style>
main {
margin: auto;
padding: .5rem 1rem;
width: 800px;
color: white;
font-size: 20px;
line-height: 1.6;
width: 90%;
}
.info {
margin-bottom: 2rem;
border: 3px solid rgba(var(--warning), 100%);
Expand Down
2 changes: 1 addition & 1 deletion src/pages/download.astro
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ import Layout from '../layouts/Layout.astro';
color: white;
font-size: 20px;
line-height: 1.6;
width: calc(100% - 2rem);
width: 90%;
}
.information {
margin-bottom: 2rem;
Expand Down
1 change: 1 addition & 0 deletions src/pages/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ import Card from '../components/Card.astro';
color: white;
font-size: 20px;
line-height: 1.6;
width: 90%;
}
.astro-a {
position: absolute;
Expand Down
2 changes: 1 addition & 1 deletion src/pages/privacy-policy.astro
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ import Layout from '../layouts/Layout.astro';
color: white;
font-size: 20px;
line-height: 1.6;
width: calc(100% - 2rem);
width: 90%;
}
.astro-a {
position: absolute;
Expand Down

0 comments on commit 3f7a8f9

Please sign in to comment.