summaryrefslogtreecommitdiff
path: root/app/assets/stylesheets/framework/avatar.scss
diff options
context:
space:
mode:
authorClement Ho <ClemMakesApps@gmail.com>2016-09-09 11:59:36 -0500
committerClement Ho <ClemMakesApps@gmail.com>2016-10-08 12:18:41 -0500
commitdf4c4833fc68f10edbdf0873ea3238bba53a7a80 (patch)
treefd4d575de0081cf22bd6b0ff742f003a73189d6b /app/assets/stylesheets/framework/avatar.scss
parent6678fab3688b9f96c551a7926e85dc855b7d4bda (diff)
downloadgitlab-ce-df4c4833fc68f10edbdf0873ea3238bba53a7a80.tar.gz
Remove redundant mixins
Diffstat (limited to 'app/assets/stylesheets/framework/avatar.scss')
-rw-r--r--app/assets/stylesheets/framework/avatar.scss4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/assets/stylesheets/framework/avatar.scss b/app/assets/stylesheets/framework/avatar.scss
index c79b22d4d21..98e301d3799 100644
--- a/app/assets/stylesheets/framework/avatar.scss
+++ b/app/assets/stylesheets/framework/avatar.scss
@@ -4,7 +4,7 @@
width: 40px;
height: 40px;
padding: 0;
- @include border-radius($avatar_radius);
+ border-radius: $avatar_radius;
border: 1px solid rgba(0, 0, 0, .1);
&.avatar-inline {
@@ -17,7 +17,7 @@
}
&.avatar-tile {
- @include border-radius(0);
+ border-radius: 0;
border: none;
}