diff --git a/services/web/frontend/stories/docs/foundations.mdx b/services/web/frontend/stories/docs/foundations.mdx index b83212683b..2e41a44003 100644 --- a/services/web/frontend/stories/docs/foundations.mdx +++ b/services/web/frontend/stories/docs/foundations.mdx @@ -1,8 +1,8 @@ import { Meta, ColorItem, ColorPalette, Title, Typeset } from '@storybook/blocks'; -import colors from '../../stylesheets/bootstrap-5/foundations/tokens/colors.json'; -import typography from '../../stylesheets/bootstrap-5/foundations/tokens/typography.json'; -import borderRadius from '../../stylesheets/bootstrap-5/foundations/tokens/borderRadius.json'; -import spacing from '../../stylesheets/bootstrap-5/foundations/tokens/spacing.json'; +import colors from '../../stylesheets/foundations/tokens/colors.json'; +import typography from '../../stylesheets/foundations/tokens/typography.json'; +import borderRadius from '../../stylesheets/foundations/tokens/borderRadius.json'; +import spacing from '../../stylesheets/foundations/tokens/spacing.json'; diff --git a/services/web/frontend/stylesheets/bootstrap-5/foundations/tokens/borderRadius.json b/services/web/frontend/stylesheets/foundations/tokens/borderRadius.json similarity index 100% rename from services/web/frontend/stylesheets/bootstrap-5/foundations/tokens/borderRadius.json rename to services/web/frontend/stylesheets/foundations/tokens/borderRadius.json diff --git a/services/web/frontend/stylesheets/bootstrap-5/foundations/tokens/colors.json b/services/web/frontend/stylesheets/foundations/tokens/colors.json similarity index 100% rename from services/web/frontend/stylesheets/bootstrap-5/foundations/tokens/colors.json rename to services/web/frontend/stylesheets/foundations/tokens/colors.json diff --git a/services/web/frontend/stylesheets/bootstrap-5/foundations/tokens/spacing.json b/services/web/frontend/stylesheets/foundations/tokens/spacing.json similarity index 100% rename from services/web/frontend/stylesheets/bootstrap-5/foundations/tokens/spacing.json rename to services/web/frontend/stylesheets/foundations/tokens/spacing.json diff --git a/services/web/frontend/stylesheets/bootstrap-5/foundations/tokens/typography.json b/services/web/frontend/stylesheets/foundations/tokens/typography.json similarity index 100% rename from services/web/frontend/stylesheets/bootstrap-5/foundations/tokens/typography.json rename to services/web/frontend/stylesheets/foundations/tokens/typography.json diff --git a/services/web/types/bootstrap.ts b/services/web/types/bootstrap.ts deleted file mode 100644 index 38f1c8085e..0000000000 --- a/services/web/types/bootstrap.ts +++ /dev/null @@ -1,11 +0,0 @@ -export type BsStyle = - | 'primary' - | 'secondary' - | 'danger' - | 'info' - | 'default' - | 'link' - | 'warning' - | 'success' - -export type BsSize = 'xs' | 'sm' | 'md' | 'lg' | 'xl'