mirror of
https://github.com/yawaflua/LuckyDiamond.git
synced 2025-12-10 12:19:31 +02:00
fix error with vision for btn play
This commit is contained in:
@@ -156,8 +156,6 @@
|
|||||||
background: #EF4444;
|
background: #EF4444;
|
||||||
filter: drop-shadow(4px 4px 4px rgba(0, 0, 0, 0.25));
|
filter: drop-shadow(4px 4px 4px rgba(0, 0, 0, 0.25));
|
||||||
border-radius: 40px;
|
border-radius: 40px;
|
||||||
width: 50%;
|
|
||||||
height: 100%;
|
|
||||||
margin: 0 0 18px 35px;
|
margin: 0 0 18px 35px;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -179,6 +177,9 @@
|
|||||||
padding: 11px 11px;
|
padding: 11px 11px;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
|
position: relative;
|
||||||
|
bottom: 5%;
|
||||||
|
left: 2%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.line__btn--elm {
|
.line__btn--elm {
|
||||||
@@ -202,4 +203,12 @@
|
|||||||
margin-bottom: 30px;
|
margin-bottom: 30px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.gamemode__twoline--first__element {
|
||||||
|
background: #EF4444;
|
||||||
|
filter: drop-shadow(4px 4px 4px rgba(0, 0, 0, 0.25));
|
||||||
|
border-radius: 40px;
|
||||||
|
width: 40%;
|
||||||
|
margin: 18px 36px 0 35px;
|
||||||
|
}
|
||||||
|
|
||||||
/* /GameMode */
|
/* /GameMode */
|
||||||
@@ -39,6 +39,7 @@
|
|||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="gamemode__lines">
|
||||||
<div class="gamemode__firstline">
|
<div class="gamemode__firstline">
|
||||||
<ul>
|
<ul>
|
||||||
<li
|
<li
|
||||||
@@ -57,6 +58,19 @@
|
|||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="gamemode__twoline--first__element">
|
||||||
|
<ul>
|
||||||
|
<li
|
||||||
|
v-for="mode in twolinefirstelementGameMode"
|
||||||
|
:key="mode"
|
||||||
|
>
|
||||||
|
<div :class="'linecontent-' + mode.id">
|
||||||
|
<h3>{{ mode.title }}</h3>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
</div>
|
</div>
|
||||||
@@ -90,8 +104,8 @@ export default {
|
|||||||
firstlineGameMode() {
|
firstlineGameMode() {
|
||||||
return this.GameModes.filter(mode => [2].includes(mode.id))
|
return this.GameModes.filter(mode => [2].includes(mode.id))
|
||||||
},
|
},
|
||||||
twolineGameMode() {
|
twolinefirstelementGameMode() {
|
||||||
return this.GameModes.filter(mode => [3, 4].includes(mode.id))
|
return this.GameModes.filter(mode => [3].includes(mode.id))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user