Skip to content

Commit

Permalink
add button class
Browse files Browse the repository at this point in the history
  • Loading branch information
MathieuRA committed Nov 25, 2024
1 parent a5f19e1 commit eaf238d
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
<UiCardTitle>{{ $t('console-actions') }}</UiCardTitle>
<UiButton
v-tooltip="toggleFullScreen === undefined ? $t('coming-soon') : undefined"
class="button"
:disabled="toggleFullScreen === undefined"
accent="info"
variant="tertiary"
Expand All @@ -13,6 +14,7 @@
</UiButton>
<UiButton
v-tooltip="openInNewTab === undefined ? $t('coming-soon') : undefined"
class="button"
:disabled="openInNewTab === undefined"
accent="info"
variant="tertiary"
Expand All @@ -24,6 +26,7 @@
</UiButton>
<UiButton
v-tooltip="sendCtrlAltDel === undefined ? $t('coming-soon') : undefined"
class="button"
accent="info"
variant="tertiary"
size="medium"
Expand Down Expand Up @@ -56,7 +59,7 @@ defineProps<{
</script>

<style lang="postcss" scoped>
.ui-button {
.button {
align-self: start;
gap: 0.8rem;
text-align: left;
Expand Down

0 comments on commit eaf238d

Please sign in to comment.