Skip to content

Commit

Permalink
minor: login title change for dapp
Browse files Browse the repository at this point in the history
  • Loading branch information
rinzler99 committed Sep 19, 2022
1 parent 144acdd commit 29daf9e
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion src/components/Login/LoginTitle/LoginTitle.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<template>
<v-flex class="mb-2 mb-sm-0" :class="isDapp ? '' : 'ml-auto mr-auto xs10 sm8'">
<v-flex v-if="!isDapp" class="mb-2 mb-sm-0" :class="isDapp ? '' : 'ml-auto mr-auto xs10 sm8'">
<div
class="text_2--text"
:class="isDapp ? 'headline font-weight-medium' : 'display-1 font-weight-bold'"
Expand Down Expand Up @@ -32,6 +32,15 @@
{{ t('login.titleNew') }}
</div>
</v-flex>
<flex v-else class="mb-2 mb-sm-0">
<div
class="text_2--text"
:class="isDapp ? 'headline font-weight-medium' : 'display-1 font-weight-bold'"
:style="{ maxWidth: isDapp ? 'inherit' : '260px' }"
>
{{ t('login.title') }}
</div>
</flex>
</template>

<script>
Expand Down

0 comments on commit 29daf9e

Please sign in to comment.