Files
leonapp/less/_rotated-flipped.less
Leonmmcoset 04c14f9648 feat: 添加Font Awesome字体图标及相关样式文件
新增Font Awesome的字体文件、SVG图标及LESS/SCSS样式文件,包括基础样式、图标定义和响应式布局支持。添加了多种常用图标如播放、停止、加减乘除等,并支持列表布局和屏幕阅读器优化。
2025-07-07 18:50:53 +08:00

32 lines
604 B
Plaintext

// rotating + flipping icons
// -------------------------
.@{fa-css-prefix}-rotate-90 {
transform: rotate(90deg);
}
.@{fa-css-prefix}-rotate-180 {
transform: rotate(180deg);
}
.@{fa-css-prefix}-rotate-270 {
transform: rotate(270deg);
}
.@{fa-css-prefix}-flip-horizontal {
transform: scale(-1, 1);
}
.@{fa-css-prefix}-flip-vertical {
transform: scale(1, -1);
}
.@{fa-css-prefix}-flip-both,
.@{fa-css-prefix}-flip-horizontal.@{fa-css-prefix}-flip-vertical {
transform: scale(-1, -1);
}
.@{fa-css-prefix}-rotate-by {
transform: rotate(~'var(--@{fa-css-prefix}-rotate-angle, none)');
}