Created
September 21, 2015 14:30
-
-
Save adamsir/c841fb674ce8d2ab9737 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
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
// ---- | |
// libsass (v3.2.5) | |
// ---- | |
/* _settings.scss */ | |
$blue: blue; | |
$black: black; | |
/* původní komponenta */ | |
@mixin unread-mark($background) { | |
width: 50px; | |
height: 50px; | |
background: $background; | |
border-radius: 50px; // zde nemusíš používat rem-calc | |
// For custom content | |
@content; | |
} | |
.unread-mark { | |
@include unread-mark($blue); | |
} | |
.navbar { | |
@include unread-mark($black) { | |
width: 80px; | |
height: 80px; | |
} | |
} |
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
@charset "UTF-8"; | |
/* _settings.scss */ | |
/* původní komponenta */ | |
.unread-mark { | |
width: 50px; | |
height: 50px; | |
background: blue; | |
border-radius: 50px; | |
} | |
.navbar { | |
width: 50px; | |
height: 50px; | |
background: black; | |
border-radius: 50px; | |
width: 80px; | |
height: 80px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment