naive-ui/styles/Icon.scss

35 lines
667 B
SCSS
Raw Normal View History

2019-11-29 15:34:37 +08:00
@import './mixins/mixins.scss';
@include themes-mixin {
@include b(icon) {
height: 1em;
width: 1em;
line-height: 1em;
text-align: center;
display: inline-block;
position: relative;
transition: $--icon-transition;
2020-02-21 15:26:51 +08:00
fill: $--n-base-text-color;
stroke: $--n-base-text-color;
svg {
height: 1em;
width: 1em;
}
2020-02-21 15:26:51 +08:00
@include m(primary-depth) {
svg {
opacity: $--n-primary-opacity;
}
}
2020-02-21 15:26:51 +08:00
@include m(secondary-depth) {
svg {
opacity: $--n-secondary-opacity;
}
}
2020-02-21 15:26:51 +08:00
@include m(tertiary-depth) {
svg {
opacity: $--n-tertiary-opacity;
}
}
}
2019-07-03 13:23:42 +08:00
}