Skip to content

Commit

Permalink
remove the navigation to /domain from signin page (#2627)
Browse files Browse the repository at this point in the history
  • Loading branch information
aggre authored Jul 12, 2024
1 parent 227cefe commit c87051f
Showing 1 changed file with 0 additions and 47 deletions.
47 changes: 0 additions & 47 deletions src/pages/signin.astro
Original file line number Diff line number Diff line change
Expand Up @@ -19,57 +19,10 @@ import SignInRedirection from '@components/SignInForm/SignInRedirection.vue'
<ConnectButton />
<SignInRedirection client:only="vue" />
</div>
<p
role="separator"
class="grid grid-cols-[1fr_auto_1fr] items-center gap-4 before:block before:border-b before:border-white/20 before:content-[''] after:block after:border-b after:border-white/20 after:content-['']"
>
or maybe...
</p>
<p class="text-center">
<a
class="hs-button is-outlined rounded-full px-4 text-native-blue-300"
href="/domain">Don't have an account?</a
>
</p>
</section>
</span>
<span>
<EmailConnectControl client:load />
</span>
</div>
</Layout>

<style lang="scss">
@use '@devprotocol/hashi/hs-button';

@include hs-button.extend('filled.native-blue') {
@include hs-button.color(
(
fill: 'native-blue.400',
ink: 'native-blue.ink',
border: 'native-blue.400',
)
);

&:hover,
&:focus {
@include hs-button.color(
(
fill: 'native-blue.300',
ink: 'native-blue.ink',
border: 'native-blue.300',
)
);
}

&:active {
@include hs-button.color(
(
fill: 'native-blue.200',
ink: 'native-blue.ink',
border: 'native-blue.200',
)
);
}
}
</style>

0 comments on commit c87051f

Please sign in to comment.