Skip to content

Commit

Permalink
fix padding and margins on Welcome.vue, a fix after 84130ea
Browse files Browse the repository at this point in the history
  • Loading branch information
nkonev committed Dec 17, 2024
1 parent 948cc5b commit 93a469e
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions frontend/src/Welcome.vue
Original file line number Diff line number Diff line change
Expand Up @@ -3,40 +3,40 @@
<v-row align="center" justify="center" style="height: 100%">
<v-card>
<v-card-title class="d-flex justify-center with-space">{{$vuetify.locale.t('$vuetify.welcome_participant')}}<span :style="getLoginColoredStyle(chatStore.currentUser)">{{chatStore.currentUser?.login}}</span>!</v-card-title>
<v-card-actions class="d-flex justify-space-around flex-wrap flex-row pb-0">
<v-btn :size="getBtnSize()" @click.prevent="findUser()" text :class="isMobile() ? 'my-2' : ''" variant="outlined" :href="getUser()">
<v-card-actions class="d-flex justify-space-around flex-wrap flex-row">
<v-btn :size="getBtnSize()" @click.prevent="findUser()" text variant="outlined" :href="getUser()">
<template v-slot:prepend>
<v-icon :size="getIconSize()">mdi-account-group</v-icon>
</template>
<template v-slot:default>
{{ $vuetify.locale.t('$vuetify.users') }}
</template>
</v-btn>
<v-btn :size="getBtnSize()" color="primary" @click.prevent="createChat()" text :class="isMobile() ? 'my-2' : ''" variant="outlined">
<v-btn :size="getBtnSize()" color="primary" @click.prevent="createChat()" text variant="outlined">
<template v-slot:prepend>
<v-icon :size="getIconSize()">mdi-plus</v-icon>
</template>
<template v-slot:default>
{{ $vuetify.locale.t('$vuetify.new_chat') }}
</template>
</v-btn>
<v-btn :size="getBtnSize()" @click.prevent="chats()" text :class="isMobile() ? 'my-2' : ''" variant="outlined" :href="getChats()">
<v-btn :size="getBtnSize()" @click.prevent="chats()" text variant="outlined" :href="getChats()">
<template v-slot:prepend>
<v-icon :size="getIconSize()">mdi-forum</v-icon>
</template>
<template v-slot:default>
{{ $vuetify.locale.t('$vuetify.chats') }}
</template>
</v-btn>
<v-btn :size="getBtnSize()" @click.prevent="availableForSearchChats()" text :class="isMobile() ? 'my-2' : ''" variant="outlined" :href="getAvailableForSearchChats()">
<v-btn :size="getBtnSize()" @click.prevent="availableForSearchChats()" text variant="outlined" :href="getAvailableForSearchChats()">
<template v-slot:prepend>
<v-icon :size="getIconSize()">mdi-forum</v-icon>
</template>
<template v-slot:default>
{{ $vuetify.locale.t('$vuetify.public_chats') }}
</template>
</v-btn>
<v-btn :size="getBtnSize()" @click.prevent="goBlog()" text :class="isMobile() ? 'my-2' : ''" variant="outlined" :href="getBlog()">
<v-btn :size="getBtnSize()" @click.prevent="goBlog()" text variant="outlined" :href="getBlog()">
<template v-slot:prepend>
<v-icon :size="getIconSize()">mdi-postage-stamp</v-icon>
</template>
Expand Down

0 comments on commit 93a469e

Please sign in to comment.