mirror of
https://github.com/EvolutionAPI/evolution-manager.git
synced 2025-07-18 13:06:33 -06:00
Fix button colors and alignment in About and
Settings modals
This commit is contained in:
parent
11b67cb36a
commit
11b8bcd8cb
@ -27,12 +27,12 @@
|
|||||||
<v-btn
|
<v-btn
|
||||||
href="https://github.com/gabrielpastori1/evolution-manager"
|
href="https://github.com/gabrielpastori1/evolution-manager"
|
||||||
target="_blank"
|
target="_blank"
|
||||||
color="grey darken-3"
|
color="grey-darken-3"
|
||||||
>
|
>
|
||||||
<v-icon start>mdi-github</v-icon>
|
<v-icon start>mdi-github</v-icon>
|
||||||
Repositório no GitHub
|
Repositório no GitHub
|
||||||
</v-btn>
|
</v-btn>
|
||||||
<v-btn @click="contribute" color="grey darken-3">
|
<v-btn @click="contribute" color="light-blue">
|
||||||
<v-icon start>mdi-hand-coin</v-icon>
|
<v-icon start>mdi-hand-coin</v-icon>
|
||||||
Contribua com o projeto
|
Contribua com o projeto
|
||||||
</v-btn>
|
</v-btn>
|
||||||
|
@ -31,12 +31,15 @@
|
|||||||
</v-alert>
|
</v-alert>
|
||||||
</v-card-text>
|
</v-card-text>
|
||||||
<v-card-actions>
|
<v-card-actions>
|
||||||
<v-btn size="small" text @click="showAbout"> Sobre esse Manager </v-btn>
|
<div class="d-flex flex-wrap justify-space-between w-100 align-center">
|
||||||
|
<v-btn size="small" text @click="showAbout">
|
||||||
<v-spacer></v-spacer>
|
Sobre esse Manager
|
||||||
|
</v-btn>
|
||||||
|
<div class="d-flex justify-end flex-grow-1 gap-1">
|
||||||
<v-btn
|
<v-btn
|
||||||
v-if="!!AppStore.connection.host"
|
v-if="!!AppStore.connection.host"
|
||||||
icon
|
icon
|
||||||
|
class="ml-0"
|
||||||
size="small"
|
size="small"
|
||||||
@click="logout"
|
@click="logout"
|
||||||
:disabled="loading"
|
:disabled="loading"
|
||||||
@ -45,6 +48,7 @@
|
|||||||
</v-btn>
|
</v-btn>
|
||||||
<v-btn
|
<v-btn
|
||||||
v-if="AppStore.validConnection"
|
v-if="AppStore.validConnection"
|
||||||
|
class="ml-0"
|
||||||
text
|
text
|
||||||
@click="dialog = false"
|
@click="dialog = false"
|
||||||
:disabled="loading"
|
:disabled="loading"
|
||||||
@ -53,6 +57,7 @@
|
|||||||
</v-btn>
|
</v-btn>
|
||||||
<v-btn
|
<v-btn
|
||||||
color="success"
|
color="success"
|
||||||
|
class="ml-0"
|
||||||
variant="tonal"
|
variant="tonal"
|
||||||
@click="save()"
|
@click="save()"
|
||||||
:disabled="!valid"
|
:disabled="!valid"
|
||||||
@ -60,6 +65,8 @@
|
|||||||
>
|
>
|
||||||
Conectar
|
Conectar
|
||||||
</v-btn>
|
</v-btn>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</v-card-actions>
|
</v-card-actions>
|
||||||
</v-card>
|
</v-card>
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user