26 lines
630 B
SCSS
26 lines
630 B
SCSS
.feed-widget {
|
|
|
|
.feed-body {
|
|
.feed-item {
|
|
padding: 12px 0;
|
|
display: flex;
|
|
align-items: center;
|
|
&:hover {
|
|
background: $gray-100;
|
|
}
|
|
>.feed-icon {
|
|
width: 40px;
|
|
height: 40px;
|
|
margin-right: 10px;
|
|
display: inline-block;
|
|
text-align: center;
|
|
vertical-align: middle;
|
|
border-radius: 100%;
|
|
color: $white;
|
|
i {
|
|
line-height: 40px;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} |