Add helpers to set size to class icons

This commit is contained in:
Stephen Abello
2021-08-25 16:14:37 +02:00
parent e1dc269171
commit ea9c1ab0b3
3 changed files with 20 additions and 2 deletions

View File

@@ -23,3 +23,4 @@
@import "font-icon";
@import "typography";
@import "misc";
@import "class-icon";

View File

@@ -0,0 +1,17 @@
.ibo-class-icon{
&.ibo-is-small{
width: 32px;
min-width: 32px;
max-height: 32px;
}
&.ibo-is-medium{
width: 48px;
min-width: 48px;
max-height: 48px;
}
&.ibo-is-large{
width: 64px;
min-width: 64px;
max-height: 64px;
}
}