Skip to content

Commit 89f23e7

Browse files
committed
mobile compatibility + more quotes
1 parent 2a96a0d commit 89f23e7

File tree

6 files changed

+45
-7
lines changed

6 files changed

+45
-7
lines changed

src/lib/components/Person.svelte

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,4 +94,12 @@
9494
color: #a6adc8;
9595
line-height: 1.5;
9696
}
97+
98+
@media (max-width: 768px) {
99+
.person-card {
100+
width: 100%;
101+
margin: 0.5rem 0;
102+
transform: none;
103+
}
104+
}
97105
</style>

src/lib/components/PrideSwirl.svelte

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,17 @@
55
66
const quotes = [
77
"You're telling me a queer coded this?",
8-
"Made with love (and with pride)",
9-
"Trangender for everyone",
10-
"Happy New Year!",
11-
"The A is for Asexual",
12-
"Trans rights or I bites",
8+
"Made with love (and with pride).",
9+
"Trangender for everyone.",
10+
"Happy New Years!",
11+
"The A is for Asexual.",
12+
"Trans rights or I bites.",
1313
"You are perfect.",
14-
"Every month is pride month"
14+
"Every month is pride month.",
15+
"Being gay is natural. Being homophobic is not.",
16+
"We're here, We're queer, deal with it.",
17+
"Trans women are women.",
18+
"Trans men are men."
1519
];
1620
1721
let quoteIndex = Math.floor(Math.random() * quotes.length);

src/lib/components/Project.svelte

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,4 +80,11 @@
8080
line-height: 1.5;
8181
}
8282
83+
@media (max-width: 768px) {
84+
.project-card {
85+
width: 100%;
86+
margin: 0.5rem 0;
87+
transform: none;
88+
}
89+
}
8390
</style>

src/lib/components/ProjectComingSoon.svelte

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,4 +88,12 @@
8888
color: #6c7086;
8989
line-height: 1.5;
9090
}
91+
92+
@media (max-width: 768px) {
93+
.project-card {
94+
width: 100%;
95+
margin: 0.5rem 0;
96+
transform: none;
97+
}
98+
}
9199
</style>

src/lib/content/home.svx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
# The Queer Web
88

9-
Hi! The Queer Web is an initative to bring free services to queer folks on the web. We currently offer free secure file hosting and sharing, with plans to expand to more services such as hosting in the near future.
9+
Hi! The Queer Web is an initative to bring free services to queer folks on the web. We currently offer free secure file storage and sharing, with plans to expand to more services such as hosting and email in the near future.
1010

1111
We support the open web and think everyone deserves freedom on the internet, even queer people. We are fiscally transparent and completely open source
1212

src/routes/+page.svelte

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,4 +44,15 @@
4444
min-height: 100vh;
4545
background-color: #1e1e2e;
4646
}
47+
48+
@media (max-width: 768px) {
49+
.pride-panel {
50+
display: none;
51+
}
52+
53+
.content {
54+
width: 100%;
55+
margin-left: 0;
56+
}
57+
}
4758
</style>

0 commit comments

Comments
 (0)