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
$margin-map: ( <!-- Define maps --> | |
'xs': 20px, | |
's': 30px, | |
'm': 60px, | |
'l': 80px, | |
'xl': 120px, | |
'xxl':160px | |
); |
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
<!-- FILENAME.SVG --> | |
<svg display="none" width="0" height="0" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"> | |
<defs> | |
<symbol id="CUSTOM_ID" viewBox="0 0 WIDTH HEIGHT"> | |
<title>TITLE</title> | |
<!-- IT'S EASIEST TO MAKE A COMPOUND PATH AND OPTIMIZED FOR SIMPLICITY --> | |
<path fill="currentColor" class="CUSTOM_CLASS" d=""/> <!-- currentColor will be determined by parent's color --> | |
</symbol> | |
<symbol id="CUSTOM_ID" viewBox="0 0 WIDTH HEIGHT"> | |
<title>TITLE</title> |