From 09ce64b0841ac40502d2b259aff2753d5e1362d8 Mon Sep 17 00:00:00 2001 From: AlexeyVin273 Date: Wed, 30 Aug 2023 17:00:45 +0600 Subject: [PATCH] =?UTF-8?q?fix(playground):=20=D0=98=D1=81=D0=BF=D1=80?= =?UTF-8?q?=D0=B0=D0=B2=D0=BB=D1=8F=D0=B5=D1=82=20=D0=BF=D1=83=D1=82=D0=B8?= =?UTF-8?q?=20=D0=BA=20svg-=D0=B8=D0=B7=D0=BE=D0=B1=D1=80=D0=B0=D0=B6?= =?UTF-8?q?=D0=B5=D0=BD=D0=B8=D1=8F=D0=BC=D0=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- source/pug/components/blocks/playground.pug | 4 ++-- source/pug/components/blocks/round-btn.pug | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/source/pug/components/blocks/playground.pug b/source/pug/components/blocks/playground.pug index 13db302..078b640 100644 --- a/source/pug/components/blocks/playground.pug +++ b/source/pug/components/blocks/playground.pug @@ -8,10 +8,10 @@ mixin playground() .playground__header +round-btn({icon: "icon-arrow-back", iconWidth: "11", iconHeight: "19"}) .playground__stats.playground__stars - img(src=`/img/svg/icon-star.svg`, width="48", height="50", alt="") + img(src=`img/svg/icon-star.svg`, width="48", height="50", alt="") span.playground__stars-number 0/9000 .playground__stats.playground__coins - img(src=`/img/svg/icon-coins.svg`, width="39", height="27", alt="") + img(src=`img/svg/icon-coins.svg`, width="39", height="27", alt="") span.playground__coins-number 1000000 .playground__main +slot() diff --git a/source/pug/components/blocks/round-btn.pug b/source/pug/components/blocks/round-btn.pug index 3c70fe0..57adf8c 100644 --- a/source/pug/components/blocks/round-btn.pug +++ b/source/pug/components/blocks/round-btn.pug @@ -3,4 +3,4 @@ mixin round-btn(options) button.round-btn&attributes(attributes) if (icon) - img(src=`/img/svg/${icon}.svg`, width=iconWidth, height=iconHeight, alt="") + img(src=`img/svg/${icon}.svg`, width=iconWidth, height=iconHeight, alt="")