-
Notifications
You must be signed in to change notification settings - Fork 13.9k
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
Font styling consolidation #8633
Merged
mistercrunch
merged 32 commits into
apache:master
from
preset-io:font-styling-consolidation
Nov 27, 2019
Merged
Changes from all commits
Commits
Show all changes
32 commits
Select commit
Hold shift + click to select a range
035c0bd
Font weights standardized
rusackas f286642
now with more glob!
rusackas b17939f
Linting touchups
rusackas e7d3797
caught a low-value color declaration
rusackas 785481c
first wave of font size alignment
rusackas adea6ab
Merge branch 'master' into font-styling-consolidation
rusackas 565e977
Merge branch 'master' into font-styling-consolidation
rusackas cbcb5c7
getting the CRUD styles caught up to speed.
rusackas 184f9d0
unneeded inline-block - float does that for ya.
rusackas c331fad
a few errant colors that snuck in.
rusackas 2f3d4a3
more font stylings.
rusackas 0e5599f
caught some more colors that needed variable alignment
rusackas f183ffb
le typo
rusackas 450e1d5
whittle, whittle
rusackas 389db29
dead styles
rusackas 31d3047
whittling
rusackas 643a730
whittling
rusackas 848a0b5
whittling away at font sizes
rusackas ec83d03
since we appear to be adjusting icon sizes for optics, let's get this…
rusackas d4bfaf9
Prettier :sparkles:
rusackas f97e311
Merge branch 'master' into font-styling-consolidation
rusackas 7f4999d
whittling at line height standardization.
rusackas 809b21e
placing vars, take 1
rusackas 86653aa
Merge branch 'master' into font-styling-consolidation
rusackas e87110e
2 more down...
rusackas 85e92ea
cleaning out some styles that had no real effect.
rusackas cb9a003
seemingly no change if this is removed for consistency.
rusackas 6115296
allowing one 8px line height for proper icon placement - adding comment.
rusackas d7eb638
last one, I reckon.
rusackas 0aba490
linting fixes
rusackas 04c2ad2
Merge branch 'master' into font-styling-consolidation
rusackas 5e78695
Merge branch 'master' into font-styling-consolidation
rusackas File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,7 +17,7 @@ | |
"build": "cross-env NODE_OPTIONS=--max_old_space_size=8192 NODE_ENV=production webpack --mode=production --colors --progress", | ||
"lint": "eslint --ignore-path=.eslintignore --ext .js,.jsx . && tslint -c tslint.json ./{src,spec}/**/*.ts{,x}", | ||
"lint-fix": "eslint --fix --ignore-path=.eslintignore --ext .js,.jsx . && tslint -c tslint.json --fix ./{src,spec}/**/*.ts{,x} && npm run clean-css", | ||
"clean-css": "prettier --write src/**/*.{css,less,sass,scss}", | ||
"clean-css": "prettier --write 'src/**/*.{css,less,sass,scss}'", | ||
"cypress": "cypress", | ||
"cypress-debug": "cypress open --config watchForFileChanges=true", | ||
"install-cypress": "npm install [email protected]" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
does a linter catch if css isn't formatted properly with this?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not at this point... was just using it to make life easier and catch myself. Does your Prettier PR address that? Don't want to duplicate effort here :)