diff options
author | Mateja <mail@matejamaric.com> | 2020-11-13 12:50:21 +0100 |
---|---|---|
committer | Mateja <mail@matejamaric.com> | 2020-11-13 12:50:21 +0100 |
commit | 28ccd64c820eef6514bc1315902054f5445cbbaf (patch) | |
tree | 13bcc31b6f2cba97e9c3de9fa890bf975243d3e7 | |
parent | cddef1ffc9cb204d87299cea7e9f2de0cf6e58c3 (diff) | |
download | yota-laravel-28ccd64c820eef6514bc1315902054f5445cbbaf.tar.gz yota-laravel-28ccd64c820eef6514bc1315902054f5445cbbaf.zip |
Fixed sponsors link images...
-rw-r--r-- | resources/views/pages/sponsoring.blade.php | 22 |
1 files changed, 10 insertions, 12 deletions
diff --git a/resources/views/pages/sponsoring.blade.php b/resources/views/pages/sponsoring.blade.php index cf2a872..431cc7e 100644 --- a/resources/views/pages/sponsoring.blade.php +++ b/resources/views/pages/sponsoring.blade.php @@ -9,17 +9,15 @@ <h3 class="mt-3">Sponsors: </h1> <div class="row"> - {{--<div class="col-md-2">--}} - {{--<a href="https://4o3a.com/" target="_blank"><img src="/imgs/4o3a.png" alt="4o3a"/></a>--}} - {{--</div>--}} - {{--<div class="col-md-2">--}} - {{--<a href="https://www.spiderbeam.com/" target="_blank"><img src="/imgs/spiderbeam.gif" alt="Spiderbeam"/></a>--}} - {{--</div>--}} - - {{--<a href="https://4o3a.com/" target="_blank"><img class="col-md-2" src="/imgs/4o3a.png" alt="4o3a"/></a>--}} - {{--<a href="https://www.spiderbeam.com/" target="_blank"><img class="col-md-2" src="/imgs/spiderbeam.gif" alt="Spiderbeam"/></a>--}} - - <img class="col-md-2" src="/imgs/4o3a.png" alt="4o3a"/> - <img class="col-md-2" src="/imgs/spiderbeam.gif" alt="Spiderbeam"/> + <div class="col-md-2"> + <a href="https://4o3a.com/" target="_blank"> + <img src="/imgs/4o3a.png" class="img-fluid" alt="4o3a"/> + </a> + </div> + <div class="col-md-2"> + <a href="https://www.spiderbeam.com/" target="_blank"> + <img src="/imgs/spiderbeam.gif" class="img-fluid" alt="Spiderbeam"/> + </a> + </div> </div> @endsection() |