Skip to content

Commit 193d76c

Browse files
committed
fix: whitebar
1 parent 429ee58 commit 193d76c

File tree

3 files changed

+14
-2
lines changed

3 files changed

+14
-2
lines changed

src/components/faucet/FaucetDetail.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
ref="DOMpopup"
66
class="popup fixed flex flex-col items-center rounded w-[90vw] max-w-[36rem] max-h-[90vh] justify-start bg-grey-300 top-1/2 left-1/2 -translate-x-1/2 -translate-y-1/2 z-[1000] md:justify-center text-grey-50 before:absolute before:top-0 before:bottom-0 before:left-0 before:right-0 before:rounded before:bg-500 before:z-min after:absolute after:top-px after:left-px after:bottom-px after:right-px after:bg-grey-500 after:rounded after:z-min"
77
>
8-
<div ref="DOMFaucetRequest" class="py-8 md:py-12 px-8 md:px-20 w-full overflow-scroll" v-if="store.isVisible">
8+
<div ref="DOMFaucetRequest" class="py-8 md:py-12 px-8 md:px-20 w-full overflow-scroll no-scrollbar" v-if="store.isVisible">
99
<FaucetContentForm :name="store.selectedFaucet.name ?? 'Faucet'" :options="store.faucetAmount" v-show="store.contentStep === 0" class="js-faucetform opacity-100" :error="error" @requestFaucet="requestFaucet" />
1010
<div>
1111
<div ref="gnoRequestLogo" v-show="store.contentStep >= 1" class="opacity-0">

src/components/layout/Footer.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ const socials = [
2727
},
2828
{
2929
icon: IconGitHub,
30-
link: 'https://github.com/gnolang/gno',
30+
link: 'https://github.com/gnolang/faucet-hub',
3131
},
3232
{
3333
icon: IconTwitter,

src/style.css

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -96,3 +96,15 @@ html {
9696
transform: translate3d(0, 100%, 0);
9797
opacity: 0;
9898
}
99+
100+
@layer utilities {
101+
/* Hide scrollbar for Chrome, Safari and Opera */
102+
.no-scrollbar::-webkit-scrollbar {
103+
display: none;
104+
}
105+
/* Hide scrollbar for IE, Edge and Firefox */
106+
.no-scrollbar {
107+
-ms-overflow-style: none; /* IE and Edge */
108+
scrollbar-width: none; /* Firefox */
109+
}
110+
}

0 commit comments

Comments
 (0)