This commit is contained in:
Владимир Фёдоров 2026-03-22 03:21:29 +07:00
parent f4964e6355
commit 977f9cc7eb
5 changed files with 6 additions and 14 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.0 MiB

After

Width:  |  Height:  |  Size: 1.5 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 66 KiB

BIN
src/assets/paper.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 MiB

View File

@ -37,7 +37,6 @@ async function addAction() {
<form @submit.prevent="addAction"> <form @submit.prevent="addAction">
<div class="controller"> <div class="controller">
<div class="game-input"> <div class="game-input">
<div class="game-input-run-left"></div>
<input id="run" class="game-input-run" v-model="place" type="text" placeholder="Место назначения" <input id="run" class="game-input-run" v-model="place" type="text" placeholder="Место назначения"
:disabled="props.gameState !== 'RUN'"> :disabled="props.gameState !== 'RUN'">
</div> </div>
@ -85,6 +84,7 @@ async function addAction() {
.controller { .controller {
display: flex; display: flex;
position: relative;
} }
.game-input { .game-input {
@ -92,28 +92,19 @@ async function addAction() {
top: 14px; top: 14px;
left: 25px; left: 25px;
height: 50px; height: 50px;
width: calc(100% - 150px - 50px); width: calc(100% - 150px - 35px);
}
.game-input-run-left {
height: 50px;
width: 25px;
position: absolute;
left: 0px;
background-image: url("@/assets/input_left.png");
background-size: cover;
} }
.game-input-run { .game-input-run {
height: 100%; height: 100%;
width: 100%; width: 100%;
margin-left: 15px; padding-left: 27px;
padding-left: 12px;
background-image: url("@/assets/input_center.png"); background-image: url("@/assets/input_center.png");
background-size: cover; background-size: cover;
border: 0; border: 0;
font-size: 18px; font-size: 18px;
font-family: a_OldTyper; font-family: a_OldTyper;
background-color: transparent;
} }
.game-input-run::placeholder { .game-input-run::placeholder {

View File

@ -59,8 +59,9 @@ async function letsgo(place: string) {
border-radius: 15px; border-radius: 15px;
margin: 12px 10px; margin: 12px 10px;
padding: 16px; padding: 16px;
background-color: var(--main-back-item-color);
display: flow-root; display: flow-root;
background-image: url("@/assets/paper.jpg");
background-size: cover;
} }
.message-header { .message-header {