Skip to content
This repository has been archived by the owner on Apr 15, 2019. It is now read-only.

fix: allow flip-h and flip-v to be used together #279

Merged
merged 2 commits into from Mar 8, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions scss/common/_base.scss
Expand Up @@ -105,6 +105,7 @@
// Flipping
.k-flip-h { transform: scaleX(-1); }
.k-flip-v { transform: scaleY(-1); }
.k-flip-h.k-flip-v { transform: scale(-1, -1); }

}

Expand Down