Skip to content

Commit

Permalink
fix(history table loading)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexandermake committed Jun 25, 2024
1 parent 826cadf commit 5832fe5
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "web-components",
"version": "1.4.7",
"version": "1.4.8",
"private": false,
"sideEffects": [
"*.vue",
Expand Down
14 changes: 12 additions & 2 deletions src/components/molecules/table-rows/HistoryTableLoadingRow.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
<template>
<div :class="['flex flex-col gap-1 border-b-[1px] border-border-color py-3 md:flex-row md:gap-0', $attrs.class]">
<div :class="['flex flex-1 items-center gap-0.5 text-14 font-medium uppercase text-neutral-400', $attrs.class]">
<div
:class="[
'flex max-w-[200px] flex-1 items-center gap-0.5 text-14 font-medium uppercase text-neutral-400',
$attrs.class
]"
>
<a
class="flex items-center gap-1 text-primary-50"
target="_blank"
Expand All @@ -9,7 +14,12 @@
{{ props.status }}
</a>
</div>
<div :class="['flex flex-1 items-center gap-0.5 text-12 text-14 font-medium text-neutral-400', $attrs.class]">
<div
:class="[
'flex flex-1 items-center gap-0.5 text-12 text-14 font-medium font-semibold text-neutral-400',
$attrs.class
]"
>
<span :class="['text-neutral-typography-200']">{{ props.action }}</span>
</div>
<div
Expand Down

0 comments on commit 5832fe5

Please sign in to comment.