-
Notifications
You must be signed in to change notification settings - Fork 113
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Extract icons styles to own css file
- Loading branch information
1 parent
c0691d4
commit 6d91b36
Showing
3 changed files
with
27 additions
and
14 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 |
---|---|---|
|
@@ -7,3 +7,4 @@ | |
@import "./site_nav.css"; | ||
@import "./components.css"; | ||
@import "./pages.css"; | ||
@import "./icons.css"; |
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 |
---|---|---|
@@ -0,0 +1,22 @@ | ||
.icon-small { | ||
height: 1.8rem; | ||
width: 1.8rem; | ||
} | ||
|
||
.icon-regular { | ||
height: 2.4rem; | ||
width: 2.4rem; | ||
} | ||
|
||
.icon-large { | ||
height: 3.2rem; | ||
width: 3.2rem; | ||
} | ||
|
||
.icon-twitter { | ||
color: var(--twitter-color); | ||
} | ||
|
||
.icon-github { | ||
color: var(--github-color); | ||
} |
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