Skip to content

Instantly share code, notes, and snippets.

@adamsir
Created September 21, 2015 14:30
Show Gist options
  • Save adamsir/c841fb674ce8d2ab9737 to your computer and use it in GitHub Desktop.
Save adamsir/c841fb674ce8d2ab9737 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// 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;
}
}
@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