alpha
Login
or
Join now
xcc.es
/
morganwill.com
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
[READ-ONLY] Mirror of https://github.com/mrgnw/morganwill.com.
morganwill.com
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
scrolling
author
Morgan
date
2 years ago
(Nov 1, 2024, 6:38 PM +0100)
commit
259eb6bc
259eb6bcbc6e44ef0063a79f162c9e389e61b090
parent
2b1c5978
2b1c59782d7f631698d1f61bd7152302190df92d
+24
-6
1 changed file
Expand all
Collapse all
Unified
Split
src
routes
+page.svelte
+24
-6
src/routes/+page.svelte
View file
Reviewed
···
136
136
}
137
137
}
138
138
139
139
-
:global(body) {
139
139
+
:global(html, body) {
140
140
+
height: 100vh;
141
141
+
margin: 0;
142
142
+
padding: 0;
140
143
background-color: var(--bg);
141
141
-
overflow: hidden;
142
144
}
143
143
-
144
145
145
146
.active {
146
147
color: var(--highlight);
···
168
169
display: flex;
169
170
justify-content: center;
170
171
align-items: center;
171
171
-
height: 90vh;
172
172
+
min-height: 90vh;
172
173
transition: all 0.5s ease;
173
174
}
174
175
···
182
183
@media (max-width: 767px) {
183
184
.container {
184
185
flex-direction: column;
186
186
+
align-items: center;
187
187
+
height: 100vh;
188
188
+
min-height: unset;
185
189
}
186
190
187
187
-
a {
191
191
+
.title {
192
192
+
margin: 1rem 0;
193
193
+
flex-shrink: 0;
194
194
+
}
195
195
+
196
196
+
.links {
197
197
+
flex: 1;
198
198
+
overflow-y: auto;
188
199
width: 100%;
189
189
-
margin: 1.3rem 0;
200
200
+
display: flex;
201
201
+
flex-direction: column;
202
202
+
align-items: center;
203
203
+
}
204
204
+
205
205
+
a {
206
206
+
width: auto;
207
207
+
margin: 1rem 0;
190
208
transition: all .8s ease;
191
209
}
192
210
}