[READ-ONLY] Mirror of https://github.com/mrgnw/morganwill.com. morganwill.com
0

Configure Feed

Select the types of activity you want to include in your feed.

scrolling

+24 -6
+24 -6
src/routes/+page.svelte
··· 136 136 } 137 137 } 138 138 139 - :global(body) { 139 + :global(html, body) { 140 + height: 100vh; 141 + margin: 0; 142 + padding: 0; 140 143 background-color: var(--bg); 141 - overflow: hidden; 142 144 } 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 - height: 90vh; 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 + align-items: center; 187 + height: 100vh; 188 + min-height: unset; 185 189 } 186 190 187 - a { 191 + .title { 192 + margin: 1rem 0; 193 + flex-shrink: 0; 194 + } 195 + 196 + .links { 197 + flex: 1; 198 + overflow-y: auto; 188 199 width: 100%; 189 - margin: 1.3rem 0; 200 + display: flex; 201 + flex-direction: column; 202 + align-items: center; 203 + } 204 + 205 + a { 206 + width: auto; 207 + margin: 1rem 0; 190 208 transition: all .8s ease; 191 209 } 192 210 }