Skip to content

Commit

Permalink
hide marquee on mobile
Browse files Browse the repository at this point in the history
  • Loading branch information
Hetari committed Aug 29, 2024
1 parent 602125c commit 9dc008b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/design/Marquee.vue
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<template>
<section
id="marquee-section"
class="heading-1 sm:heading-display mb-32 flex h-[60vh] w-full flex-col items-stretch justify-around overflow-x-clip bg-[#0B0B0A] leading-none text-flax-smoke-200 md:h-[75svh] lg:h-svh"
class="heading-1 hide-on-mobile sm:heading-display mb-32 flex h-[60vh] w-full flex-col items-stretch justify-around overflow-x-clip bg-[#0B0B0A] leading-none text-flax-smoke-200 md:h-[75svh] lg:h-svh"
>
<!-- Marquee 1: Dynamic Direction -->
<div id="marquee-1" class="flex">
Expand Down
2 changes: 1 addition & 1 deletion src/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@
}

.hide-on-mobile {
@apply hidden md:block;
@apply hidden sm:block;
}

.only-on-mobile {
Expand Down

0 comments on commit 9dc008b

Please sign in to comment.