Skip to content

Commit

Permalink
✨ feat(modifiers.scss): Add bg-transparent and text-transparent classes
Browse files Browse the repository at this point in the history
  • Loading branch information
Spiderpig86 committed Jan 4, 2022
1 parent bbe6d75 commit c0fcb18
Show file tree
Hide file tree
Showing 5 changed files with 29 additions and 2 deletions.
9 changes: 9 additions & 0 deletions dist/cirrus-core.css
Original file line number Diff line number Diff line change
Expand Up @@ -4386,6 +4386,15 @@ video.video-fullscreen {
color: rgba(255, 255, 255, var(--color-opacity)) !important;
}

.bg-transparent {
background-color: transparent;
}

.text-transparent {
border-color: transparent;
color: transparent;
}

/* v2 */
.bg-pink-100 {
background-color: rgba(252, 232, 243, var(--bg-opacity)) !important;
Expand Down
2 changes: 1 addition & 1 deletion dist/cirrus-core.min.css

Large diffs are not rendered by default.

9 changes: 9 additions & 0 deletions dist/cirrus.css
Original file line number Diff line number Diff line change
Expand Up @@ -4387,6 +4387,15 @@ video.video-fullscreen {
color: rgba(255, 255, 255, var(--color-opacity)) !important;
}

.bg-transparent {
background-color: transparent;
}

.text-transparent {
border-color: transparent;
color: transparent;
}

/* v2 */
.bg-pink-100 {
background-color: rgba(252, 232, 243, var(--bg-opacity)) !important;
Expand Down
2 changes: 1 addition & 1 deletion dist/cirrus.min.css

Large diffs are not rendered by default.

9 changes: 9 additions & 0 deletions src/base/modifiers.scss
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,15 @@
}
}

.bg-transparent {
background-color: transparent;
}

.text-transparent {
border-color: transparent;
color: transparent;
}

/* v2 */

@each $name, $palette in $v2Palettes {
Expand Down

0 comments on commit c0fcb18

Please sign in to comment.