Skip to content

Commit

Permalink
feat: add image to create redirect view
Browse files Browse the repository at this point in the history
  • Loading branch information
mwargan committed Apr 27, 2024
1 parent 71e9e7d commit bcd4893
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/assets/customTheme.css
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ article:has(>:first-child:is(.images)) {
}

.hero-section {
padding-top: calc(var(--pico-block-spacing-vertical) * 2);
padding-top: calc(var(--pico-block-spacing-vertical) * 1);
padding-bottom: calc(var(--pico-block-spacing-vertical) * 3);

h1 {
Expand Down
1 change: 1 addition & 0 deletions src/assets/undraw_connection.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 7 additions & 3 deletions src/views/CreateRedirectView.vue
Original file line number Diff line number Diff line change
@@ -1,10 +1,14 @@
<script setup lang="ts">
import CreateRedirect from "@/forms/CreateRedirect.vue";
import CardElement from "@/components/CardElement.vue";
import image from "@/assets/undraw_connection.svg";
</script>
<template>
<h1>{{ $t("New magic link") }}</h1>
<card-element>
<create-redirect></create-redirect>
</card-element>
<div class="two-column-grid">
<card-element>
<create-redirect></create-redirect>
</card-element>
<img :src="image" alt="A person holding a link" />
</div>
</template>

0 comments on commit bcd4893

Please sign in to comment.