Skip to content

Commit 45d75cf

Browse files
committed
fix: Social Buttons hiding patches button
This isn't the best solution, but it solves the problem for 99% of scenarios, the whole website is due a rewrite
1 parent 38c565c commit 45d75cf

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

src/layout/Hero/SocialHost.svelte

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,16 +23,12 @@
2323
padding: 0 max(6.5%, calc(50vw - 50rem));
2424
align-items: center;
2525
user-select: none;
26-
position: absolute;
2726
display: flex;
28-
bottom: 2rem;
2927
gap: 1rem;
30-
left: 0;
3128
}
3229
3330
@media screen and (max-width: 767px) {
3431
.social-host {
35-
left: 0;
3632
width: 100%;
3733
display: flex;
3834
flex-wrap: wrap;

src/routes/+page.svelte

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,13 +129,18 @@
129129
<Wave />
130130

131131
<style>
132+
main {
133+
display: flex;
134+
flex-direction: column;
135+
gap: 1.5rem;
136+
}
132137
.wrap {
133138
margin-inline: auto;
134139
width: min(87%, 100rem);
135140
margin-top: 7rem;
136141
}
137142
.wrappezoid {
138-
height: calc(100vh - 120px);
143+
height: calc(100vh - 225px);
139144
display: flex;
140145
flex-direction: row;
141146
justify-content: center;

0 commit comments

Comments
 (0)