Skip to content

Commit

Permalink
fix(style): adjust icon size in welcome view
Browse files Browse the repository at this point in the history
  • Loading branch information
gabaldon committed Apr 23, 2024
1 parent c71d9c6 commit 1bc49f8
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/components/CustomIcon.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<template>
<component :is="icon" />
<component :is="icon" :class="className" />
</template>

<script setup lang="ts">
Expand Down
9 changes: 7 additions & 2 deletions src/components/steps/WelcomeForm.vue
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<template>
<div data-test="welcome-back" class="welcome-back">
<div class="bar">
<CustomIcon class-name="row sheikah-icon" name="sheikah-icon" />
<CustomIcon class="row sheikah-icon" name="sheikah-icon" />
<p v-if="walletInfos && walletInfos.length" class="row title">{{
$t('welcome_back')
}}</p>
Expand Down Expand Up @@ -80,9 +80,14 @@ export default {
text-align: left;
}
.icon-container {
cursor: pointer;
margin: -10px;
padding: 10px;
}
.icon {
color: var(--text-medium-emphasis);
cursor: pointer;
font-size: 20px;
}
Expand Down

0 comments on commit 1bc49f8

Please sign in to comment.