diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c62b904f..2ad8d2a2 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -6,7 +6,7 @@ on: - main - dev pull_request: - types: [opened, ready_for_review, converted_to_draft] + types: [opened, ready_for_review, converted_to_draft, synchronize] branches: - main - dev diff --git a/packages/ui/src/components/Table/Table.stories.tsx b/packages/ui/src/components/Table/Table.stories.tsx index 26e54d2e..01148079 100644 --- a/packages/ui/src/components/Table/Table.stories.tsx +++ b/packages/ui/src/components/Table/Table.stories.tsx @@ -1,7 +1,7 @@ import type { Meta, StoryObj } from "@storybook/react"; -import { Table } from ".."; import Text from "../Text"; +import Table from "."; const meta: Meta = { title: "Shared/Table", diff --git a/packages/ui/src/components/Table/index.tsx b/packages/ui/src/components/Table/index.tsx index 74cffecc..20245341 100644 --- a/packages/ui/src/components/Table/index.tsx +++ b/packages/ui/src/components/Table/index.tsx @@ -41,3 +41,5 @@ Table.Right = ({ children }: PropsWithChildren) => { ); }; + +export default Table; diff --git a/packages/ui/src/styles.css b/packages/ui/src/styles.css index cb522b7f..aa255d96 100644 --- a/packages/ui/src/styles.css +++ b/packages/ui/src/styles.css @@ -239,8 +239,6 @@ progress { --colors-mono-950: #121212; --colors-white: #ffffff; --colors-black: #000000; - --spacing-xxs: 0.25rem; - --spacing-xs: 0.5rem; --border-widths-button: 1px; --colors-primary: #368ff7; --colors-success: #2a8642; @@ -400,18 +398,6 @@ progress { .h_80px:not(#\#):not(#\#):not(#\#):not(#\#):not(#\#) { height: 80px; } -.gap_xxs:not(#\#):not(#\#):not(#\#):not(#\#):not(#\#) { - gap: var(--spacing-xxs); -} -.gap_xs:not(#\#):not(#\#):not(#\#):not(#\#):not(#\#) { - gap: var(--spacing-xs); -} -.c_sub:not(#\#):not(#\#):not(#\#):not(#\#):not(#\#) { - color: var(--colors-sub); -} -.c_blue:not(#\#):not(#\#):not(#\#):not(#\#):not(#\#) { - color: blue; -} .c_textBlack:not(#\#):not(#\#):not(#\#):not(#\#):not(#\#) { color: var(--colors-text-black); } @@ -658,6 +644,9 @@ progress { .c_errorBackground:not(#\#):not(#\#):not(#\#):not(#\#):not(#\#) { color: var(--colors-error-background); } +.c_sub:not(#\#):not(#\#):not(#\#):not(#\#):not(#\#) { + color: var(--colors-sub); +} .c_outline:not(#\#):not(#\#):not(#\#):not(#\#):not(#\#) { color: var(--colors-outline); } @@ -793,9 +782,3 @@ progress { .jc_flex-end:not(#\#):not(#\#):not(#\#):not(#\#):not(#\#) { justify-content: flex-end; } -.flex-d_column:not(#\#):not(#\#):not(#\#):not(#\#):not(#\#) { - flex-direction: column; -} -.jc_center:not(#\#):not(#\#):not(#\#):not(#\#):not(#\#) { - justify-content: center; -}