增加配置项与图标库

This commit is contained in:
2025-12-12 18:42:22 +08:00
parent cc4e07f5ca
commit 9f21fa1f4f
5686 changed files with 408136 additions and 0 deletions

35
public/font-awesome/scss/_stacked.scss vendored Normal file
View File

@@ -0,0 +1,35 @@
// stacking icons
// -------------------------
@use 'variables' as v;
.#{v.$css-prefix}-stack {
display: inline-block;
height: 2em;
line-height: 2em;
position: relative;
vertical-align: v.$stack-vertical-align;
width: v.$stack-width;
}
.#{v.$css-prefix}-stack-1x,
.#{v.$css-prefix}-stack-2x {
--#{v.$css-prefix}-width: 100%;
inset: 0;
position: absolute;
text-align: center;
width: var(--#{v.$css-prefix}-width);
z-index: var(--#{v.$css-prefix}-stack-z-index, #{v.$stack-z-index});
}
.#{v.$css-prefix}-stack-1x {
line-height: inherit;
}
.#{v.$css-prefix}-stack-2x {
font-size: 2em;
}
.#{v.$css-prefix}-inverse {
color: var(--#{v.$css-prefix}-inverse, #{v.$inverse});
}