Skip to content
This repository has been archived by the owner on Feb 2, 2023. It is now read-only.

Commit

Permalink
fix(website): Fix different SVG's issues
Browse files Browse the repository at this point in the history
  • Loading branch information
LukyVj authored and Vincent Voyer committed Apr 5, 2016
1 parent 3d3233f commit e611b53
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/source/stylesheets/components/_containers.scss
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ section {
min-height: 314px
}

svg {
.fl-right svg {
path,
ellipse {
transform: translateY(12px);
Expand Down
4 changes: 2 additions & 2 deletions docs/source/stylesheets/vendors/_svg-animations.scss
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,12 @@ svg {
#pin {
animation: bounce $timingFunction;
}
#ellipse {
ellipse {
transform-origin: center center;
-moz-transform-origin: 40% 50%;
animation: bounceShadow $timingFunction;
}


@include anim('bounce', 'translateY(0)', 'translateY(-5px)', 'translateY(-5px)');
@include anim('bounceShadow', 'scale(1)', 'scale(0.75)', 'scale(0.75)');
@include anim('bounceShadow', 'scale(1) translateY(12px)', 'scale(0.75) translateY(12px)', 'scale(0.75) translateY(12px)');

0 comments on commit e611b53

Please sign in to comment.