Skip to content

Commit

Permalink
fix: styles import;
Browse files Browse the repository at this point in the history
  • Loading branch information
denisx committed Nov 14, 2024
1 parent 1e4ab3f commit 2ce7709
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
12 changes: 5 additions & 7 deletions packages/typography/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
export { Title } from './title';
export { TitleDesktop } from './title-desktop/component';
export { TitleMobile } from './title-mobile/component';
export { TitleResponsive } from './title-responsive';
export { Text } from './text';
export * from './title';
export * from './title-desktop';
export * from './title-mobile';
export * from './title-responsive';
export * from './text';
export * from './component';
export * from './presets';
export type { TitleProps } from './title';
export type { TextProps } from './text';
export type { TCOLORS as Color } from './types';
2 changes: 2 additions & 0 deletions packages/typography/src/margins/margins.common.module.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
@import '../../../vars/src/gaps.css';

@define-mixin margin-large {
margin: var(--gap-0) var(--gap-0) var(--gap-24);
}
Expand Down
1 change: 1 addition & 0 deletions packages/typography/src/margins/margins.desktop.module.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
@import '../../../vars/src/gaps.css';
@import './margins.common.module.css';

@define-mixin margin-medium {
Expand Down

0 comments on commit 2ce7709

Please sign in to comment.