|
@@ -146,11 +146,15 @@
|
|
|
tabindex="0"
|
|
|
aria-description="shadow art game"
|
|
|
>
|
|
|
- <img src="@/assets/images/game.png" alt="" />
|
|
|
+ <img v-if="themeIdx === 0" src="@/assets/images/game-default-color.svg" alt="" />
|
|
|
+ <img v-if="[1, 3].includes(themeIdx)" src="@/assets/images/game-black.svg" alt="" />
|
|
|
+ <img v-if="[2, 4].includes(themeIdx)" src="@/assets/images/game-yellow.svg" alt="" />
|
|
|
</a>
|
|
|
</li>
|
|
|
<li>
|
|
|
- <img src="@/assets/images/code.png" alt="" tabindex="0"/>
|
|
|
+ <img v-if="themeIdx === 0" src="@/assets/images/code-default-color.svg" alt="" tabindex="0"/>
|
|
|
+ <img v-if="[1, 3].includes(themeIdx)" src="@/assets/images/code-black.svg" alt="" tabindex="0"/>
|
|
|
+ <img v-if="[2, 4].includes(themeIdx)" src="@/assets/images/code-yellow.svg" alt="" tabindex="0"/>
|
|
|
<div>
|
|
|
<img src="@/assets/images/index_ewm1.png" alt=""
|
|
|
/>
|
|
@@ -377,9 +381,6 @@ export default {
|
|
|
top: 50%;
|
|
|
right: 40px;
|
|
|
transform: translateY(-50%);
|
|
|
- ::-webkit-input-placeholder {
|
|
|
- color: #000000;
|
|
|
- }
|
|
|
.input-wrapper {
|
|
|
box-sizing: border-box;
|
|
|
position: relative;
|
|
@@ -404,6 +405,9 @@ export default {
|
|
|
&:focus {
|
|
|
border-color: #ca000a;
|
|
|
}
|
|
|
+ &::placeholder {
|
|
|
+ color: black;
|
|
|
+ }
|
|
|
}
|
|
|
img {
|
|
|
width: 14px;
|