Skip to content

Commit

Permalink
fix: #1000 - images width-heigth;
Browse files Browse the repository at this point in the history
  • Loading branch information
migbash committed Feb 13, 2023
1 parent 5950ade commit 753d0d1
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 11 deletions.
4 changes: 3 additions & 1 deletion src/lib/components/_Email_subscribe.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,10 @@
<img
id="close-vector"
class="cursor-pointer"
src="assets/svg/close.svg"
src="/assets/svg/close.svg"
alt="close-svg"
width="20"
height="20"
on:click={() =>
($sessionStore.newsletterPopUpShow = false)}
/>
Expand Down
22 changes: 12 additions & 10 deletions src/lib/components/_Platform_alert.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -15,26 +15,28 @@
=================== -->

{#if HEADER_TRANSLATION_DATA != undefined}
<!-- [ℹ] identify the correct translation via IF
<!--
[ℹ] identify the correct translation via IF
-->
{#if HEADER_TRANSLATION_DATA.scores_top_bar_messages.status && show}
<!-- [ℹ]
-->
<div id="platform-alert-container">
<!-- [ℹ]
-->
<p class="s-12 color-white">
<p
class="
s-12
color-white
">
{HEADER_TRANSLATION_DATA
.scores_top_bar_messages.message}
</p>
<!-- [ℹ] close-cross
-->
<!--
[ℹ] close-cross
-->
<img
id="close-platform-alert-img"
src="/assets/svg/alert/close.svg"
alt="close-vector"
width="14px"
height="14px"
width="14"
height="14"
on:click={() => (show = false)}
/>
</div>
Expand Down
1 change: 1 addition & 0 deletions src/lib/components/_Splash_screen.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@

{#if show}
<div>
<!-- FIXME: need width & height -->
<img
id="brand-svg"
src="/assets/svg/logo-main.svg"
Expand Down

0 comments on commit 753d0d1

Please sign in to comment.