Skip to content

Instantly share code, notes, and snippets.

@ondrique
Created February 8, 2019 12:38
Show Gist options
  • Save ondrique/559ab4cc5b9cbae29fe218e0dca08c76 to your computer and use it in GitHub Desktop.
Save ondrique/559ab4cc5b9cbae29fe218e0dca08c76 to your computer and use it in GitHub Desktop.
Avatar
/*
Avatars
------------------------
*/
.avatar {
display: inline-block;
position: relative;
width: 3rem;
height: 3rem;
text-align: center;
border: $border-color;
border-radius: 50%;
background: $white;
box-shadow: $box-shadow;
line-height: 3rem;
&.avatar-sm {
width: 2rem;
height: 2rem;
}
&.avatar-lg {
width: 5rem;
height: 5rem;
}
&.avatar-xl {
width: 7rem;
height: 7rem;
}
&.avatar-xxl {
width: 10rem;
min-width: 10rem;
height: 10rem;
}
&.avatar-border-white {
border: solid 2px $white;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment