various changes, fixes to css etc

This commit is contained in:
w0bm
2021-11-07 10:28:35 +00:00
parent ac6c15c0e1
commit 50b89c7be7
102 changed files with 2358 additions and 38 deletions

View File

@@ -0,0 +1,12 @@
<button title="Toggle Background" class="hidden-xs bg-toggle power" id="togglebg">BG</button>
<div class="favbutton">
@if(auth()->check())
@if(auth()->user()->hasFaved($video->id))
<a id="fav" href="{{url($video->id . '/fav')}}">UNFAV</a>
@else
<a id="fav" href="{{url($video->id . '/fav')}}">FAV</a>
@endif
@else
<a href="{{url($video->id . '/fav')}}">FAVED</a>
@endif
</div>