Skip to content

Commit dc8589f

Browse files
committed
style: reverted width changes
Signed-off-by: Pedro Lamas <pedrolamas@gmail.com>
1 parent fc38dd3 commit dc8589f

File tree

5 files changed

+11
-8
lines changed

5 files changed

+11
-8
lines changed

src/components/widgets/afc/AfcCardButtons.vue

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
>
2828
<template #activator="{ on, attrs }">
2929
<v-btn
30-
class="flex"
30+
class="fill-width"
3131
:disabled="(command.disabledWhilePrinting && printerPrinting) || !klippyReady"
3232
small
3333
v-bind="attrs"
@@ -62,7 +62,7 @@
6262
v-bind="attrs"
6363
:macro="macro.macro"
6464
small
65-
class="flex"
65+
class="fill-width"
6666
v-on="on"
6767
@click="sendGcode($event)"
6868
>
@@ -76,7 +76,7 @@
7676
</v-list-item>
7777
<v-list-item>
7878
<v-btn
79-
class="flex"
79+
class="fill-width"
8080
small
8181
@click="showAfcSettings = true"
8282
>
@@ -95,7 +95,7 @@
9595
</v-list-item>
9696
<v-list-item>
9797
<v-btn
98-
class="flex"
98+
class="fill-width"
9999
small
100100
@click="downloadDebugJson"
101101
>

src/components/widgets/afc/AfcCardUnitLaneActions.vue

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<template>
22
<v-row>
33
<v-col class="px-6 pt-3 pb-6 d-flex flex-row justify-space-between">
4-
<v-item-group class="_btn-group d-flex flex-nowrap py-0">
4+
<v-item-group class="_btn-group d-flex flex-nowrap fill-width py-0">
55
<v-tooltip
66
v-if="toolLoaded"
77
top
@@ -117,7 +117,6 @@ export default class AfcCardUnitLaneActions extends Mixins(StateMixin, AfcMixin,
117117
<style scoped>
118118
._btn-group {
119119
border-radius: 4px;
120-
width: 100%;
121120
122121
.v-btn {
123122
border-radius: 0;

src/components/widgets/afc/AfcCardUnitLaneEmpty.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
<v-btn
1919
dense
2020
small
21-
class="flex elevation-0"
21+
class="fill-width elevation-0"
2222
v-bind="attrs"
2323
v-on="on"
2424
@click="ejectLane"

src/components/widgets/afc/AfcCardUnitLaneHeader.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<v-btn
55
dense
66
small
7-
class="flex elevation-0"
7+
class="fill-width elevation-0"
88
@click="showDialog = true"
99
>
1010
{{ name }} > {{ mappedTool }}

src/scss/misc.scss

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,3 +87,7 @@ textarea.clipboard-copy {
8787
z-index: 100000;
8888
opacity: 0;
8989
}
90+
91+
.fill-width {
92+
width: 100% !important;
93+
}

0 commit comments

Comments
 (0)