Skip to content

Commit

Permalink
Fix broken blogboxes
Browse files Browse the repository at this point in the history
  • Loading branch information
Brambora2022 committed Dec 25, 2024
1 parent 0697cce commit 8464fc1
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/lib/ThinBox.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

<style>
.blog-box {
width: calc(32% - 27px);
width: calc(32% - 24px);
}
.blog-box :global(h3) {
Expand Down
2 changes: 1 addition & 1 deletion src/routes/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@
}
.boxes > div > img {
width: 623px;
width: 631px;
}
.project-boxes {
Expand Down
7 changes: 3 additions & 4 deletions src/routes/blog/BlogBoxes.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -216,14 +216,13 @@
<style>
.blogboxes {
display: flex;
width: 100%;
flex-wrap: wrap;
gap: 64px;
}
@media only screen and (max-width: 1225px) {
@media only screen and (max-width: 1450px) {
.blogboxes {
flex-wrap: wrap;
gap: 63px;
gap: 59px;
}
}
</style>

0 comments on commit 8464fc1

Please sign in to comment.