diff --git a/src/components/status_action_buttons/action_button.scss b/src/components/status_action_buttons/action_button.scss
index 14bfdfa9d..a52b2bc42 100644
--- a/src/components/status_action_buttons/action_button.scss
+++ b/src/components/status_action_buttons/action_button.scss
@@ -2,9 +2,7 @@
/* stylelint-disable declaration-no-important */
.quick-action {
- display: grid;
- grid-template-columns: minmax(max-content, 1fr);
- grid-gap: 0.25em;
+ display: flex;
align-items: center;
height: 1.5em;
@@ -12,6 +10,7 @@
overflow-x: hidden;
text-overflow: ellipsis;
white-space: nowrap;
+ margin-left: 1em;
}
.action-button-inner,
@@ -25,6 +24,7 @@
align-self: stretch;
width: 1px;
background-color: var(--icon);
+ margin-left: 1em;
margin-right: 0.5em;
}
@@ -44,7 +44,7 @@
.action-button-inner {
display: grid;
grid-gap: 1em;
- grid-template-columns: max-content 1fr;
+ grid-template-columns: max-content;
grid-auto-flow: column;
grid-auto-columns: max-content;
align-items: center;
diff --git a/src/components/status_action_buttons/action_button.vue b/src/components/status_action_buttons/action_button.vue
index b399f392b..79beea433 100644
--- a/src/components/status_action_buttons/action_button.vue
+++ b/src/components/status_action_buttons/action_button.vue
@@ -50,12 +50,6 @@
>
{{ $t(button.label(funcArg)) }}
-
- {{ button.counter?.(funcArg) }}
-
+
+ {{ button.counter?.(funcArg) }}
+
diff --git a/src/components/status_action_buttons/action_button_container.vue b/src/components/status_action_buttons/action_button_container.vue
index d70f13f9f..d860297d8 100644
--- a/src/components/status_action_buttons/action_button_container.vue
+++ b/src/components/status_action_buttons/action_button_container.vue
@@ -2,7 +2,7 @@