$argon2id$v=19$m=512,t=256,p=1$KY90x321GNH0MmE48ETOLA$kZrYxzWDvoVsnvQRTcCWg5ej5i1RIczBYhOGTUMUegc
🏳️🌈
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
$bp-xs: 480px; | |
$bp-sm: 768px; | |
$bp-md: 992px; | |
$bp-lg: 1200px; | |
// Mixin: BreakPoint | |
@mixin bp($point) { | |
@if $point == xs { | |
@media (min-width: $bp-xs) { | |
@content; |
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
// Retina Sprite | |
// Mixin takes a two sprite maps, one normal and one retina. It then swaps | |
// out the sprite images, repositions and resizes the images accordingly | |
// | |
// Rules | |
// | |
// Image names within the sprites should match. For example logo.png should | |
// exist within both folders. If the image doesn't exist within the retina | |
// sprite, the image will fallback to the image that does exist. | |
// |