Skip to content

Commit 5c05719

Browse files
authored
feat: better extend button (#80)
1 parent 9c14ea9 commit 5c05719

1 file changed

Lines changed: 15 additions & 3 deletions

File tree

src/components/tables/InstancesTable.vue

Lines changed: 15 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -209,11 +209,13 @@
209209
/>
210210
<q-btn
211211
@click="openExtendInstanceDialog(props.row)"
212-
icon="more_time"
212+
label="extend"
213+
color="green"
213214
size="sm"
214-
flat
215+
unelevated
215216
dense
216-
class="col-auto"
217+
no-caps
218+
class="col-auto instance-extend-btn"
217219
:data-testid="`extend-instance-${props.row.id}`"
218220
>
219221
<q-tooltip class="bg-indigo" :offset="[10, 10]">
@@ -3078,4 +3080,14 @@ export default defineComponent({
30783080
.matrix-payment-count-select {
30793081
min-width: 132px;
30803082
}
3083+
3084+
.instance-extend-btn {
3085+
min-height: 16px !important;
3086+
padding: 1px 8px !important;
3087+
border-radius: 4px !important;
3088+
}
3089+
3090+
.instance-extend-btn .q-btn__content {
3091+
line-height: 1.1;
3092+
}
30813093
</style>

0 commit comments

Comments
 (0)