Merge pull request #1125 from BeatC/small-avatar-images

Fixed problem with resizing thumb avatars
pull/1133/head 1482
yanas 8 years ago committed by GitHub
commit 42604971dc
  1. 8
      css/_mixins.scss
  2. 3
      css/_videolayout_default.scss

@ -66,6 +66,14 @@
@include transform(translate(-50%, -50%))
}
/**
* Defines the maximum width and height
**/
@mixin maxSize($value) {
max-width: $value;
max-height: $value;
}
@mixin transform($func) {
-moz-transform: $func;
-ms-transform: $func;

@ -399,7 +399,8 @@
}
.userAvatar {
@include circle(60px);
@include maxSize(60px);
@include circle(50%);
@include absoluteAligning();
}

Loading…
Cancel
Save