salix/front/core/components/icon-button/style.scss

29 lines
543 B
SCSS
Raw Normal View History

2019-10-09 22:47:29 +00:00
@import "effects";
vn-icon-button {
2019-10-09 22:47:29 +00:00
@extend %clickable-light;
outline: 0;
2019-02-08 16:49:51 +00:00
color: $color-main;
2019-10-09 22:47:29 +00:00
display: inline-flex;
align-items: center;
font-size: 18pt;
padding: .25em;
2019-02-13 13:01:37 +00:00
& > button {
background-color: transparent;
display: block;
2019-02-08 16:49:51 +00:00
color: inherit;
border: 0;
padding: 0;
font-size: inherit;
2019-02-13 13:01:37 +00:00
&:hover {
background-color: initial;
}
& > vn-icon {
display: block;
font-size: inherit;
2019-02-08 16:49:51 +00:00
}
}
}