Skip to content

Commit aae809a

Browse files
fix: mobile (#24)
1 parent 4efce63 commit aae809a

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

components/BigTextMain.vue

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
let spotify_link = `https://spotify-github-profile.kittinanx.com/api/view?uid=saahil.d&cover_image=true&theme=default&show_offline=true&background_color=121212&interchange=false&bar_color=b6494d&bar_color_cover=true`;
33
</script>
44
<template>
5-
<div class="flex items-center justify-between mt-20 px-20">
5+
<div class="flex items-center justify-between md:mt-20 md:px-20 mt-10 px-10">
66
<div>
7-
<img src="/neonspfp.png" height="200" width="200" class="pb-5" />
8-
<h1 class="font-bold text-5xl">
7+
<img src="/neonspfp.png" class="md:pb-5 pb-2 md:h-[200px] md:w-[200px] h-[100px] w-[100px]" />
8+
<h1 class="font-bold md:text-5xl text-2xl">
99
<svg
1010
class="h-9 w-9 lg:h-10 lg:w-10 xl:h-12 xl:w-12 inline-block align-bottom"
1111
style="color: #cba6f7"
@@ -61,7 +61,7 @@ let spotify_link = `https://spotify-github-profile.kittinanx.com/api/view?uid=sa
6161

6262
<!-- Right: Spotify Image -->
6363
<div>
64-
<img :src="spotify_link" alt="Saahil's Spotify" class="mt-5" />
64+
<img :src="spotify_link" alt="Saahil's Spotify" class="mt-5 hidden md:block" />
6565
</div>
6666
</div>
6767
</template>

pages/about.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,11 +49,11 @@ let cards = [
4949
<div>
5050
<AboutMe />
5151
</div>
52-
<div class="md:mr-10">
52+
<div class="md:mr-10 hidden sm:block">
5353
<FeedbackCards :cards="cards" />
5454
</div>
5555
</div>
56-
<div class="-mt-30 hidden sm:block">
56+
<div class="-mt-30 hidden md:block">
5757
<SnakeGrid />
5858
</div>
5959
</div>

0 commit comments

Comments
 (0)