mirror of
https://github.com/Retrospring/retrospring.git
synced 2025-02-09 03:13:37 +01:00
26 lines
297 B
SCSS
26 lines
297 B
SCSS
.user-list {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
.user-list-entry-smiles {
|
|
* {
|
|
display: inline-block;
|
|
vertical-align: middle;
|
|
}
|
|
|
|
img {
|
|
height: 64px
|
|
}
|
|
|
|
span {
|
|
margin-left: 5px;
|
|
}
|
|
|
|
a:hover {
|
|
text-decoration: none;
|
|
span {
|
|
text-decoration: underline;
|
|
}
|
|
}
|
|
}
|