1
0
mirror of https://github.com/nolanlawson/pinafore synced 2025-02-03 15:17:37 +01:00

17 lines
347 B
HTML
Raw Normal View History

2018-02-04 10:50:39 -08:00
<Avatar account={{status.account}}
className="status-sidebar"
size="{{isStatusInOwnThread ? 'medium' : 'small'}}" />
2018-02-04 10:50:39 -08:00
<style>
:global(.status-sidebar) {
2018-02-09 20:07:48 -08:00
grid-area: sidebar;
2018-02-09 22:01:44 -08:00
margin-right: 10px;
2018-02-04 10:50:39 -08:00
}
</style>
<script>
2018-02-08 17:56:20 -08:00
import Avatar from '../Avatar.html'
2018-02-04 10:50:39 -08:00
export default {
components: {
Avatar
}
}
</script>