Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

date stacked component initial commit #373

Merged
merged 15 commits into from
Jun 18, 2019
Prev Previous commit
Next Next commit
no bg variant
Joe Knox committed Apr 11, 2019
commit 90003c1a55a8f05266a1f16de4e5a0a1989cb781
6 changes: 6 additions & 0 deletions core/dist/css/decanter.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
@charset "UTF-8";

//
// Date Stacked No Background
//

.su-date-stacked--no-background {
@include padding(0);
background: none;
color: $color-black;
yvonnetangsu marked this conversation as resolved.
Show resolved Hide resolved
text-align: left;
}
2 changes: 2 additions & 0 deletions core/src/scss/components/date-stacked/_date-stacked.scss
Original file line number Diff line number Diff line change
@@ -5,6 +5,8 @@
//
// Abbreviated month stacked on top of numerical day of the month.
//
// .su-date-stacked--no-background - Black type on transparent background
//
// Markup: ../templates/components/date-stacked/date-stacked.twig
//
// Style guide: Components.Date Stacked
3 changes: 2 additions & 1 deletion core/src/scss/components/date-stacked/index.scss
Original file line number Diff line number Diff line change
@@ -5,4 +5,5 @@
///

@import
'date-stacked';
'date-stacked',
'date-stacked--no-background';