Skip to content

Commit

Permalink
🐛 bug(overflow.scss): Fixed bug where quotes were included in cirrus.…
Browse files Browse the repository at this point in the history
…css build for misc and overflow util clases
  • Loading branch information
Spiderpig86 committed Jul 1, 2021
1 parent 8e9bbf4 commit bbc1549
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 21 deletions.
36 changes: 18 additions & 18 deletions dist/cirrus.css
Original file line number Diff line number Diff line change
Expand Up @@ -8077,22 +8077,22 @@ a.tag:hover {
/* UTILS */
/* Utility classes to help solve some very annoying issues */
.u-pull-left {
float: "left" !important; }
float: left !important; }

.u-pull-right {
float: "right" !important; }
float: right !important; }

.u-text-justify {
text-align: "justify" !important; }
text-align: justify !important; }

.u-text-left {
text-align: "left" !important; }
text-align: left !important; }

.u-text-right {
text-align: "right" !important; }
text-align: right !important; }

.u-text-center {
text-align: "center" !important; }
text-align: center !important; }

.u-text-ellipsis {
text-overflow: ellipsis;
Expand Down Expand Up @@ -8179,40 +8179,40 @@ a.tag:hover {
/* Media Queries */
/* Smaller than the defined pixels are the dimensions for that range */
.u-overflow-auto {
overflow: "auto" !important; }
overflow: auto !important; }

.u-overflow-hidden {
overflow: "hidden" !important; }
overflow: hidden !important; }

.u-overflow-visible {
overflow: "visible" !important; }
overflow: visible !important; }

.u-overflow-scroll {
overflow: "scroll" !important; }
overflow: scroll !important; }

.u-overflow-x-auto {
overflow-x: "auto" !important; }
overflow-x: auto !important; }

.u-overflow-x-hidden {
overflow-x: "hidden" !important; }
overflow-x: hidden !important; }

.u-overflow-x-visible {
overflow-x: "visible" !important; }
overflow-x: visible !important; }

.u-overflow-x-scroll {
overflow-x: "scroll" !important; }
overflow-x: scroll !important; }

.u-overflow-y-auto {
overflow-y: "auto" !important; }
overflow-y: auto !important; }

.u-overflow-y-hidden {
overflow-y: "hidden" !important; }
overflow-y: hidden !important; }

.u-overflow-y-visible {
overflow-y: "visible" !important; }
overflow-y: visible !important; }

.u-overflow-y-scroll {
overflow-y: "scroll" !important; }
overflow-y: scroll !important; }

/*
Functions
Expand Down
4 changes: 2 additions & 2 deletions src/core/utils/misc.scss
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
/* UTILS */
/* Utility classes to help solve some very annoying issues */

$pull-directions: ('left', 'right');
$pull-directions: (left, right);
@include generate-classes-for-viewport($pull-directions, 'float', delimitize('pull'), $generate-viewports: #{get-viewport-flag('FLOAT')});

$text-directions: ('justify', 'left', 'right', 'center');
$text-directions: (justify, left, right, center);
@include generate-classes-for-viewport($text-directions, 'text-align', delimitize('text'), $generate-viewports: #{get-viewport-flag('TEXT')});

.u-text-ellipsis {
Expand Down
2 changes: 1 addition & 1 deletion src/core/utils/overflow.scss
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
@import '../../../helpers/_functions';
@import '../../../helpers/_size';

$overflow: ('auto', 'hidden', 'visible', 'scroll');
$overflow: (auto, hidden, visible, scroll);
@include generate-classes-for-viewport(
$overflow,
'overflow',
Expand Down

0 comments on commit bbc1549

Please sign in to comment.