37 lines
504 B
SCSS
37 lines
504 B
SCSS
@use '../../styles/app' as *;
|
|
|
|
.root {
|
|
:global {
|
|
.icon-list {
|
|
margin-top: 1rem;
|
|
}
|
|
|
|
.icon-list-item {
|
|
height: 32px;
|
|
font-size: 14px;
|
|
line-height: 32px;
|
|
|
|
> a {
|
|
color: $text-color;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.bi {
|
|
width: 32px;
|
|
margin-right: 10px;
|
|
}
|
|
|
|
&:hover {
|
|
.bi {
|
|
font-size: 28px;
|
|
top: 2px;
|
|
}
|
|
|
|
.bi {
|
|
vertical-align: -6px;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|