Fix icon library change in register form
ci/woodpecker/push/build Pipeline failed Details

This commit is contained in:
Melon 2022-11-27 01:41:50 +00:00
parent 7eb58bfa90
commit be2feb1079
Signed by: melon
GPG Key ID: 6C9D970C50D26A25
1 changed files with 6 additions and 17 deletions

View File

@ -1,4 +1,5 @@
<script lang="ts">
import {ExternalLink} from "lucide-svelte";
import {createEventDispatcher} from "svelte";
import {navigate} from "svelte-navigator";
import {getEnv} from "~/utils/env";
@ -110,8 +111,11 @@
<section>
<div>
You must agree to the <a href={getEnv("LINK_TERMS")} target="_blank">Terms</a> and
<a href={getEnv("LINK_PRIVACY")} target="_blank">Privacy</a> documents.
You must agree to the
<a href={getEnv("LINK_TERMS")} target="_blank">Terms <ExternalLink size={16} /></a>
and
<a href={getEnv("LINK_PRIVACY")} target="_blank">Privacy <ExternalLink size={16} /></a>
documents.
</div>
</section>
</div>
@ -133,7 +137,6 @@
<style lang="scss">
@import "../../assets/panel.scss";
@import "../../assets/material-symbols.scss";
.register-widget {
@include panel;
@ -146,20 +149,6 @@
flex-direction: column;
align-items: center;
a[target="_blank"] {
margin-right: 20px;
position: relative;
&::after {
@include mso;
position: absolute;
margin-left: 4px;
content: "open_in_new";
font-size: inherit;
line-height: initial;
}
}
> h1 {
margin: 0;
padding: 32px 32px 0;