1
0
Fork 0

Fix squashed avatars and long images in timelines

This commit is contained in:
Stasiek Michalski 2018-06-06 07:02:28 +02:00 committed by GitHub
parent 99975da140
commit 28535a6416
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,6 @@
<div class="card my-4 status-card">
<div class="card-header d-inline-flex align-items-center bg-white">
<img class="img-thumbnail" src="{{$item->profile->avatarUrl()}}" width="32px" height="32px" style="border-radius: 32px;">
<img src="{{$item->profile->avatarUrl()}}" width="32px" height="32px" style="border-radius: 32px;">
<a class="username font-weight-bold pl-2 text-dark" href="{{$item->profile->url()}}">
{{$item->profile->username}}
</a>
@ -28,7 +28,7 @@
</div>
</div>
</div>
<a href="{{$item->url()}}">
<a class="max-hide-overflow" href="{{$item->url()}}">
<img class="card-img-top" src="{{$item->mediaUrl()}}">
</a>
<div class="card-body">
@ -100,4 +100,4 @@
<input class="form-control status-reply-input" name="comment" placeholder="Add a comment...">
</form>
</div>
</div>
</div>