Skip to content

Commit

Permalink
fix: added fallback for safari pre big sur
Browse files Browse the repository at this point in the history
  • Loading branch information
kkukelka committed Apr 12, 2022
1 parent 7bcd7be commit 1f6e56a
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 6 deletions.
Binary file added assets/KODADOT.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
17 changes: 11 additions & 6 deletions components/landing/Landing.vue
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,17 @@
<div class="container">
<div class="columns">
<div class="column">
<img
src="~/assets/KODADOT.webp"
alt="First NFT market explorer on Kusama and Polkadot"
class="mb-5 is-hidden-mobile"
width="950"
height="165" />
<picture>
<source srcset="~/assets/KODADOT.webp" type="image/webp" />
<source srcset="~/assets/KODADOT.png" type="image/png" />
<img
src="~/assets/KODADOT.png"
alt="First NFT market explorer on Kusama and Polkadot"
class="mb-5 is-hidden-mobile"
width="950"
height="165"
loading="lazy" />
</picture>
<h3
class="title is-1 is-size-3-mobile is-flex is-flex-direction-column uppercase homepage__heading">
<span class="text__stroked my-5">
Expand Down

0 comments on commit 1f6e56a

Please sign in to comment.