summaryrefslogtreecommitdiff
path: root/_bulma/node_modules/bulma/sass/elements/icon.sass
diff options
context:
space:
mode:
Diffstat (limited to '_bulma/node_modules/bulma/sass/elements/icon.sass')
-rw-r--r--_bulma/node_modules/bulma/sass/elements/icon.sass21
1 files changed, 21 insertions, 0 deletions
diff --git a/_bulma/node_modules/bulma/sass/elements/icon.sass b/_bulma/node_modules/bulma/sass/elements/icon.sass
new file mode 100644
index 0000000..988546c
--- /dev/null
+++ b/_bulma/node_modules/bulma/sass/elements/icon.sass
@@ -0,0 +1,21 @@
+$icon-dimensions: 1.5rem !default
+$icon-dimensions-small: 1rem !default
+$icon-dimensions-medium: 2rem !default
+$icon-dimensions-large: 3rem !default
+
+.icon
+ align-items: center
+ display: inline-flex
+ justify-content: center
+ height: $icon-dimensions
+ width: $icon-dimensions
+ // Sizes
+ &.is-small
+ height: $icon-dimensions-small
+ width: $icon-dimensions-small
+ &.is-medium
+ height: $icon-dimensions-medium
+ width: $icon-dimensions-medium
+ &.is-large
+ height: $icon-dimensions-large
+ width: $icon-dimensions-large