You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
50 lines
906 B
50 lines
906 B
// Icon shape
|
|
|
|
.icon-xxs {
|
|
width: $icon-size-xxs;
|
|
height: $icon-size-xxs;
|
|
line-height: $icon-size-xxs;
|
|
}
|
|
.icon-xs {
|
|
width: $icon-size-xs;
|
|
height: $icon-size-xs;
|
|
line-height: $icon-size-xs;
|
|
}
|
|
.icon-sm {
|
|
width: $icon-size-sm;
|
|
height: $icon-size-sm;
|
|
line-height: $icon-size-sm;
|
|
}
|
|
.icon-md {
|
|
width: $icon-size-md;
|
|
height: $icon-size-md;
|
|
line-height: $icon-size-md;
|
|
}
|
|
.icon-lg {
|
|
width: $icon-size-lg;
|
|
height: $icon-size-lg;
|
|
line-height: $icon-size-lg;
|
|
}
|
|
.icon-xl {
|
|
width: $icon-size-xl;
|
|
height: $icon-size-xl;
|
|
line-height: $icon-size-xl;
|
|
}
|
|
.icon-xxl {
|
|
width: $icon-size-xxl;
|
|
height: $icon-size-xxl;
|
|
line-height: $icon-size-xxl;
|
|
}
|
|
|
|
.icon-xxxl {
|
|
width: $icon-size-xxxl;
|
|
height: $icon-size-xxxl;
|
|
line-height: $icon-size-xxxl;
|
|
}
|
|
.icon-shape {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
text-align: center;
|
|
vertical-align: middle;
|
|
}
|
|
|