详细说明: - 移除文旅和智能开发目录中的重复图片文件 - 清理font-awesome等前端资源文件 - 保留必要的文档和素材文件 影响模块: - doc/notion文档资料/文旅/ - doc/notion文档资料/智能开发/ 🤖 Generated with Claude Code Co-Authored-By: Claude <noreply@anthropic.com>
32 lines
600 B
Plaintext
Executable File
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)');
|
|
}
|