Skip to content

Commit

Permalink
fix(site): revert size variable declaration
Browse files Browse the repository at this point in the history
Reverted variable declaration for the absolute size variables because
recursion occurs if single components (like label) refers as @BIG:
@absoluteBig but @absoluteBig: @BIG was set in site.variables
  • Loading branch information
Sean Hamilton committed Jul 28, 2019
1 parent 489e801 commit 1f1c6f0
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/themes/default/globals/site.variables
Original file line number Diff line number Diff line change
Expand Up @@ -670,14 +670,14 @@
@relativeMassive : unit( @massiveRaw, em);

/* rem */
@absoluteMini : @mini;
@absoluteTiny : @tiny;
@absoluteSmall : @small;
@absoluteMedium : @medium;
@absoluteLarge : @large;
@absoluteBig : @big;
@absoluteHuge : @huge;
@absoluteMassive : @massive;
@absoluteMini : unit( @miniRaw, rem);
@absoluteTiny : unit( @tinyRaw, rem);
@absoluteSmall : unit( @smallRaw, rem);
@absoluteMedium : unit( @mediumRaw, rem);
@absoluteLarge : unit( @largeRaw, rem);
@absoluteBig : unit( @bigRaw, rem);
@absoluteHuge : unit( @hugeRaw, rem);
@absoluteMassive : unit( @massiveRaw, rem);

/*-------------------
Icons
Expand Down

0 comments on commit 1f1c6f0

Please sign in to comment.