We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
h1, h2, h3, h4, h5, h6 { display: block; margin: 1rem 0; font-weight: normal; &:first-child { margin-top: 0; } a { color: inherit; } }
If we're adding this to every project, then perhaps there should be an additive mixin in knapsack for this.
Need to look into this too:
// Global responsive typography - edit per project // Type will be fluid between min and max sizes // See mixin fluid-type() in Knapsack h1 { @include fluid-type(36px, 56px, 420px, 1024px); } h2 { @include fluid-type(36px, 48px, 420px, 1024px); } h3 { @include fluid-type(30px, 36px, 420px, 1024px); } h4 { @include fluid-type(24px, 30px, 420px, 1024px); } h5 { @include fluid-type(20px, 24px, 420px, 1024px); } h6 { @include fluid-type(18px, 20px, 420px, 1024px); } p, ul, li, ol { @include fluid-type(15px, 18px);}
As I think it could cause some bloat.
The text was updated successfully, but these errors were encountered:
header resets per #27
515fbe7
No branches or pull requests
If we're adding this to every project, then perhaps there should be an additive mixin in knapsack for this.
Need to look into this too:
As I think it could cause some bloat.
The text was updated successfully, but these errors were encountered: