Skip to content

Commit

Permalink
Updated styles and tokens
Browse files Browse the repository at this point in the history
  • Loading branch information
Supernova Bot committed Feb 4, 2025
1 parent 51578c6 commit a024a9c
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
12 changes: 6 additions & 6 deletions packages/design-tokens/src/js/global-tokens/other.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ export const containerPaddingMobile = '16px';
export const containerPaddingTablet = '32px';
export const containerPaddingDesktop = '32px';

export const containerXSmallMaxWidth = '480px';
export const containerXsmallMaxWidth = '480px';

export const containerSmallMaxWidth = '640px';

Expand All @@ -13,7 +13,7 @@ export const containerLargeMaxWidth = '1024px';

export const containerMaxWidth = '1280px';

export const containerXLargeMaxWidth = '1280px';
export const containerXlargeMaxWidth = '1280px';

export const breakpointMobile = 0;
export const breakpointTablet = '768px';
Expand All @@ -33,8 +33,8 @@ export const containers = {
tablet: containerPaddingTablet,
desktop: containerPaddingDesktop,
},
xSmall: {
maxWidth: containerXSmallMaxWidth,
xsmall: {
maxWidth: containerXsmallMaxWidth,
},
small: {
maxWidth: containerSmallMaxWidth,
Expand All @@ -46,8 +46,8 @@ export const containers = {
maxWidth: containerLargeMaxWidth,
},
maxWidth: containerMaxWidth,
xLarge: {
maxWidth: containerXLargeMaxWidth,
xlarge: {
maxWidth: containerXlargeMaxWidth,
},
};

Expand Down
12 changes: 6 additions & 6 deletions packages/design-tokens/src/scss/global-tokens/_other.scss
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ $container-padding-mobile: 16px !default;
$container-padding-tablet: 32px !default;
$container-padding-desktop: 32px !default;

$container-x-small-max-width: 480px !default;
$container-xsmall-max-width: 480px !default;

$container-small-max-width: 640px !default;

Expand All @@ -13,7 +13,7 @@ $container-large-max-width: 1024px !default;

$container-max-width: 1280px !default;

$container-x-large-max-width: 1280px !default;
$container-xlarge-max-width: 1280px !default;

$breakpoint-mobile: 0 !default;
$breakpoint-tablet: 768px !default;
Expand All @@ -33,8 +33,8 @@ $containers: (
tablet: $container-padding-tablet,
desktop: $container-padding-desktop,
),
x-small: (
max-width: $container-x-small-max-width,
xsmall: (
max-width: $container-xsmall-max-width,
),
small: (
max-width: $container-small-max-width,
Expand All @@ -46,8 +46,8 @@ $containers: (
max-width: $container-large-max-width,
),
max-width: $container-max-width,
x-large: (
max-width: $container-x-large-max-width,
xlarge: (
max-width: $container-xlarge-max-width,
),
) !default;

Expand Down

0 comments on commit a024a9c

Please sign in to comment.