Files
habitica/website/client/src/assets/scss/icon.scss
T
2020-04-13 16:19:46 +02:00

67 lines
707 B
SCSS

.svg-icon {
display: block;
transition: none !important;
fill: currentColor;
svg {
display: block;
}
* {
transition: none !important;
}
&.color {
svg path {
fill: currentColor;
}
}
}
.icon-16 {
width: 16px;
height: 16px;
}
.icon-12 {
width: 12px;
height: 12px;
}
.icon-24 {
width: 24px;
height: 24px;
}
.icon-10 {
width: 10px;
height: 10px;
}
.inline {
display: inline-block;
}
.toggle-up, .toggle-down {
cursor: pointer;
.svg-icon {
width: 20px;
}
}
.close-icon {
position: absolute;
top: 1rem;
right: 1rem;
cursor: pointer;
& svg path {
stroke: $gray-200;
}
&:hover svg path {
stroke: $gray-100;
}
}