File tree Expand file tree Collapse file tree 3 files changed +14
-2
lines changed Expand file tree Collapse file tree 3 files changed +14
-2
lines changed Original file line number Diff line number Diff line change 5
5
ref =" DOMpopup"
6
6
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"
7
7
>
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" >
9
9
<FaucetContentForm :name =" store.selectedFaucet.name ?? 'Faucet'" :options =" store.faucetAmount" v-show =" store.contentStep === 0" class =" js-faucetform opacity-100" :error =" error" @requestFaucet =" requestFaucet" />
10
10
<div >
11
11
<div ref =" gnoRequestLogo" v-show =" store.contentStep >= 1" class =" opacity-0" >
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ const socials = [
27
27
},
28
28
{
29
29
icon: IconGitHub ,
30
- link: ' https://github.com/gnolang/gno ' ,
30
+ link: ' https://github.com/gnolang/faucet-hub ' ,
31
31
},
32
32
{
33
33
icon: IconTwitter ,
Original file line number Diff line number Diff line change @@ -96,3 +96,15 @@ html {
96
96
transform : translate3d (0 , 100% , 0 );
97
97
opacity : 0 ;
98
98
}
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
+ }
You can’t perform that action at this time.
0 commit comments