Browse code

Update

Benjamin Roth authored on17/03/2023 09:52:56
Showing1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,23 @@
1
+// Icon Sizes
2
+// -------------------------
3
+
4
+// makes the font 33% larger relative to the icon container
5
+.#{$fa-css-prefix}-lg {
6
+  font-size: (4em / 3);
7
+  line-height: (3em / 4);
8
+  vertical-align: -.0667em;
9
+}
10
+
11
+.#{$fa-css-prefix}-xs {
12
+  font-size: .75em;
13
+}
14
+
15
+.#{$fa-css-prefix}-sm {
16
+  font-size: .875em;
17
+}
18
+
19
+@for $i from 1 through 10 {
20
+  .#{$fa-css-prefix}-#{$i}x {
21
+    font-size: $i * 1em;
22
+  }
23
+}