pinafore/routes/_components/Avatar.html

16 lines
277 B
HTML
Raw Normal View History

2018-01-15 04:30:04 +01:00
<img alt="Profile picture for @{{account.acct}}" src="{{account.avatar_static}}">
2018-01-11 05:45:02 +01:00
<style>
img {
2018-01-11 09:26:35 +01:00
width: 48px;
height: 48px;
2018-01-15 04:28:50 +01:00
margin: 0 auto;
2018-01-11 05:45:02 +01:00
border-radius: 4px;
}
</style>
<script>
export default {
data: () => ({
account: null
})
}
</script>