-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Removed unused imports * Added font smoothing antialiased * Reset default ol list style
- Loading branch information
1 parent
6d39959
commit 884fa85
Showing
4 changed files
with
5 additions
and
5 deletions.
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 |
---|---|---|
@@ -1,11 +1,7 @@ | ||
@forward "./_breakpoints.scss"; | ||
@forward "./_colors.scss"; | ||
@forward "./_ease.scss"; | ||
@forward "./_fonts.scss"; | ||
@forward "./_functions.scss"; | ||
@forward "./_grid.scss"; | ||
@forward "./_ratio.scss"; | ||
@forward "./_reset.scss"; | ||
@forward "./_texts.scss"; | ||
@forward "./_utils.scss"; | ||
@forward "./_viewport.scss"; |
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 |
---|---|---|
|
@@ -15,6 +15,7 @@ | |
|
||
html { | ||
font-size: var(--font-size); | ||
-webkit-font-smoothing: antialiased; | ||
} | ||
|
||
body { | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -74,7 +74,9 @@ strong { | |
/** | ||
* Remove list style dote by default | ||
*/ | ||
ul { | ||
ul, | ||
ol, | ||
menu { | ||
list-style: none; | ||
} | ||
|
||
|