Skip to content

Commit

Permalink
Fix buttons width
Browse files Browse the repository at this point in the history
  • Loading branch information
dyakovri committed Nov 22, 2023
1 parent 260559b commit 5c116d0
Showing 1 changed file with 2 additions and 14 deletions.
16 changes: 2 additions & 14 deletions src/views/profile/ProfileSettingsView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -25,16 +25,15 @@ const OnClick = async () => {
<v-btn prepend-icon="history" variant="tonal" class="button" @click="$router.push('/profile/sessions')"
>Текущие сессии</v-btn
>
<v-btn variant="tonal" class="button-exit" @click="OnClick">Выход</v-btn>
<v-btn variant="tonal" class="button" color="red" @click="OnClick">Выход</v-btn>
</div>
</IrdomLayout>
</template>

<style scoped>
.button {
position: relative;
border-radius: 10px !important;
width: 600px;
width: 100%;
max-width: 600px;
display: flex;
text-align: center;
Expand All @@ -43,17 +42,6 @@ const OnClick = async () => {
margin: 0 auto;
}
.button-exit {
border-radius: 10px !important;
color: red !important;
width: 600px;
max-width: 600px;
display: flex;
padding: 12px 16px;
gap: 12px;
margin: 0 auto;
}
.buttons {
position: relative;
color: #f2f2f2 !important;
Expand Down

0 comments on commit 5c116d0

Please sign in to comment.