@everymatrix/casino-footer-v2 1.1.5 → 1.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@everymatrix/casino-footer-v2",
|
3
|
-
"version": "1.
|
3
|
+
"version": "1.2.0",
|
4
4
|
"main": "dist/casino-footer-v2.js",
|
5
5
|
"svelte": "src/index.ts",
|
6
6
|
"scripts": {
|
@@ -36,5 +36,5 @@
|
|
36
36
|
"publishConfig": {
|
37
37
|
"access": "public"
|
38
38
|
},
|
39
|
-
"gitHead": "
|
39
|
+
"gitHead": "3800c3e93fdc948c5bc48101acce6cd81ce65706"
|
40
40
|
}
|
@@ -366,7 +366,7 @@
|
|
366
366
|
{:else}
|
367
367
|
|
368
368
|
<div class="Footer" bind:this={customStylingContainer}>
|
369
|
-
<div class="FooterSide {isOnMobile
|
369
|
+
<div class="FooterSide {isOnMobile && isLoggedIn && panicbuttonenabled === "true" ? 'FooterSideMobile' : ''}">
|
370
370
|
<!-- start helper section -->
|
371
371
|
{#if helpLinksRepeater}
|
372
372
|
{#each helpLinksRepeater as category}
|
@@ -509,7 +509,7 @@
|
|
509
509
|
<!-- start language selector -->
|
510
510
|
{#if (languageselectorenabled==="true" && languagePackLoaded && selectedLanguage)}
|
511
511
|
<div class="GridRow">
|
512
|
-
<div class="
|
512
|
+
<div class="LanguageSelectorContainer">
|
513
513
|
<!-- traditional dropdown option for screenreader users. Works the same way as the old language selector. Display: none -->
|
514
514
|
<select bind:value={selectedLanguage} class="Item ItemLanguage" on:change={()=>changeLanguage()}>
|
515
515
|
{#each languagesArray as operatorLanguage}
|
@@ -561,6 +561,7 @@
|
|
561
561
|
}
|
562
562
|
|
563
563
|
.Footer {
|
564
|
+
position: relative;
|
564
565
|
background-color: $color-white;
|
565
566
|
display: flex;
|
566
567
|
padding: 21px 12px;
|
@@ -568,7 +569,7 @@
|
|
568
569
|
}
|
569
570
|
|
570
571
|
.FooterSideMobile {
|
571
|
-
margin-top:
|
572
|
+
margin-top: 44px;
|
572
573
|
}
|
573
574
|
|
574
575
|
.FooterSide {
|
@@ -669,6 +670,10 @@
|
|
669
670
|
margin: 0;
|
670
671
|
}
|
671
672
|
|
673
|
+
.LanguageSelectorContainer {
|
674
|
+
position: relative;
|
675
|
+
}
|
676
|
+
|
672
677
|
.LanguageSelectorOverlay {
|
673
678
|
position: relative;
|
674
679
|
font-size: 12px;
|
@@ -700,7 +705,7 @@
|
|
700
705
|
width: 150px;
|
701
706
|
bottom: 30px;
|
702
707
|
padding: 6px 0;
|
703
|
-
left:
|
708
|
+
left: 7px;
|
704
709
|
|
705
710
|
&.hidden {
|
706
711
|
display: none;
|