diff options
Diffstat (limited to 'components/ObozWidget.vue')
-rw-r--r-- | components/ObozWidget.vue | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/components/ObozWidget.vue b/components/ObozWidget.vue index 8e1037e..887fd13 100644 --- a/components/ObozWidget.vue +++ b/components/ObozWidget.vue @@ -13,13 +13,20 @@ export default { </script> <style scoped> +.webp .oboz-widget { + background-image: url('/assets/oboz.webp'); +} + +.no-webp .oboz-widget { + background-image: url('/assets/oboz.jpg'); +} + .oboz-widget { width: 100%; margin-top: 50px; padding: 80px 20%; - background-image: url('/assets/oboz.webp'); background-size: cover; background-position: center; background-repeat: no-repeat; |