Files
Agent-n8n/doc/文档资料/智能开发/附件项目/assets/font-awesome/less/_rotated-flipped.less
Yep_Q 114fa7ddd1 clean: 清理notion文档资料中的重复文件
详细说明:
- 移除文旅和智能开发目录中的重复图片文件
- 清理font-awesome等前端资源文件
- 保留必要的文档和素材文件

影响模块:
- doc/notion文档资料/文旅/
- doc/notion文档资料/智能开发/

🤖 Generated with Claude Code

Co-Authored-By: Claude <noreply@anthropic.com>
2025-09-28 15:48:48 +08:00

32 lines
600 B
Plaintext
Executable File

// 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, 0)');
}