open-nomad/ui/app/styles/core/icon.scss
Michael Lange b4b00282dd When an icon is intended as text, it shouldn't have pointer events
This prevents the svg from being a target in click events.
2020-06-18 22:08:27 -07:00

50 lines
862 B
SCSS

$icon-dimensions: 1.25rem;
$icon-dimensions-small: 1rem;
$icon-dimensions-medium: 1.5rem;
$icon-dimensions-large: 2rem;
.icon {
align-items: center;
display: inline-flex;
justify-content: center;
vertical-align: text-top;
height: $icon-dimensions;
width: $icon-dimensions;
fill: $text;
&.is-text {
width: 1.2em;
height: 1.2em;
pointer-events: none;
}
&.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;
}
&.is-faded {
fill: $grey-light;
color: $grey-light;
}
@each $name, $pair in $colors {
$color: nth($pair, 1);
&.is-#{$name} {
fill: $color;
color: $color;
}
}
}