Last active
May 31, 2023 12:03
-
-
Save davilious/82ba1356b49109e206c008449a548bda to your computer and use it in GitHub Desktop.
Icons
This file contains hidden or 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
| .icon { | |
| --icon-color-default: #000; | |
| height: var(--icon-height, 16px); | |
| width: var(--icon-width, 16px); | |
| display: inline-block; | |
| } | |
| .icon-wadus { | |
| @extend .icon; | |
| --icon-image: image-url('2.0/icons/icon-wadus.svg'); | |
| background-image: none !important; | |
| mask: var(--icon-image); | |
| background-color: var(--icon-color, var(--icon-color-default)); | |
| background-image: image-url('2.0/icons/icon-wadus.svg'); | |
| } |
This file contains hidden or 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
| <i class="icon-wadus" style="--icon-color: red"></i> | |
| <i class="icon-wadus" style="--icon-color: #eee"></i> | |
| <i class="icon-wadus" style="--icon-color: #666888"></i> |
This file contains hidden or 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
| .icon, .icon-wadus { | |
| --icon-color-default: #000; | |
| height: var(--icon-height, 16px); | |
| width: var(--icon-width, 16px); | |
| display: inline-block; | |
| } | |
| .icon-wadus { | |
| --icon-image: image-url("2.0/icons/icon-wadus.svg"); | |
| background-image: none !important; | |
| mask: var(--icon-image); | |
| background-color: var(--icon-color, var(--icon-color-default)); | |
| background-image: image-url("2.0/icons/icon-wadus.svg"); | |
| } |
This file contains hidden or 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
| { | |
| "sass": { | |
| "compiler": "dart-sass/1.32.12", | |
| "extensions": {}, | |
| "syntax": "SCSS", | |
| "outputStyle": "expanded" | |
| }, | |
| "autoprefixer": false | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment