@cfpb/cfpb-core
Advanced tools
Comparing version 0.34.0 to 0.35.0
{ | ||
"name": "@cfpb/cfpb-core", | ||
"version": "0.34.0", | ||
"version": "0.35.0", | ||
"description": "Design System core styles", | ||
@@ -13,4 +13,4 @@ "less": "src/cfpb-core.less", | ||
}, | ||
"gitHead": "7ae82ebf5fe6c0416e41119591391232b7c2cf31", | ||
"gitHead": "04616b0e62128ba99fd700f0113977210c7313ab", | ||
"type": "module" | ||
} |
12
usage.md
@@ -136,7 +136,8 @@ The @cfpb/cfpb-core component acts as the backbone for Design System. | ||
``` | ||
.respond-to-min( @bp-sm-min, { | ||
// Tablet and above. | ||
.respond-to-min(@bp-sm-min, { | ||
.title { | ||
font-size: 2em; | ||
} | ||
} ); | ||
}); | ||
@@ -158,3 +159,3 @@ // Compiles to | ||
``` | ||
.respond-to-range(@bp1, @bp2, @rules); | ||
.respond-to-range(@bp1, @bp2, @rules ); | ||
``` | ||
@@ -165,7 +166,8 @@ | ||
``` | ||
.respond-to-range( @bp-sm-min, @bp-sm-max, { | ||
// Tablet only. | ||
.respond-to-range(@bp-sm-min, @bp-sm-max, { | ||
.title { | ||
font-size: 2em; | ||
} | ||
} ); | ||
}); | ||
@@ -172,0 +174,0 @@ // Compiles to |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
80953