fix
This commit is contained in:
parent
f7da699cfb
commit
fd6ededacf
@ -3,6 +3,7 @@ import { onMounted, ref } from 'vue';
|
|||||||
import { useRouter } from 'vue-router';
|
import { useRouter } from 'vue-router';
|
||||||
import { apiGetTeam } from './client';
|
import { apiGetTeam } from './client';
|
||||||
import { UnauthorizedError } from './UnauthorizedError';
|
import { UnauthorizedError } from './UnauthorizedError';
|
||||||
|
import MessagePaper from './MessagePaper.vue';
|
||||||
|
|
||||||
const router = useRouter();
|
const router = useRouter();
|
||||||
|
|
||||||
@ -53,6 +54,7 @@ onMounted(() => {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="center-message">
|
<div class="center-message">
|
||||||
|
<MessagePaper>
|
||||||
<form @submit.prevent="onClickLogin">
|
<form @submit.prevent="onClickLogin">
|
||||||
<div>
|
<div>
|
||||||
<input class="input-custom" v-model="login" type="text" placeholder="Название команды">
|
<input class="input-custom" v-model="login" type="text" placeholder="Название команды">
|
||||||
@ -67,14 +69,16 @@ onMounted(() => {
|
|||||||
{{ errorMsg }}
|
{{ errorMsg }}
|
||||||
</div>
|
</div>
|
||||||
</form>
|
</form>
|
||||||
|
</MessagePaper>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<style scoped>
|
<style scoped>
|
||||||
.input-custom {
|
.input-custom {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
box-sizing: border-box; /* обязательно! */
|
box-sizing: border-box;
|
||||||
margin-right: 15px;
|
/* обязательно! */
|
||||||
|
margin: 10px 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.error-message {
|
.error-message {
|
||||||
@ -82,7 +86,8 @@ onMounted(() => {
|
|||||||
margin: 16px 0;
|
margin: 16px 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.input-custom, .button-custom {
|
.input-custom,
|
||||||
|
.button-custom {
|
||||||
padding: 12px 16px;
|
padding: 12px 16px;
|
||||||
border: 1px solid #ddd;
|
border: 1px solid #ddd;
|
||||||
border-radius: 15px;
|
border-radius: 15px;
|
||||||
|
|||||||
@ -69,12 +69,13 @@ async function letsgo(place: string) {
|
|||||||
|
|
||||||
.message-header {
|
.message-header {
|
||||||
font-size: 20px;
|
font-size: 20px;
|
||||||
|
padding-right: 50px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.collapse-icon {
|
.collapse-icon {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: 8px;
|
top: 12px;
|
||||||
right: 10px;
|
right: 14px;
|
||||||
width: 45px;
|
width: 45px;
|
||||||
height: 32px;
|
height: 32px;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
@ -124,7 +125,7 @@ async function letsgo(place: string) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.message-footer {
|
.message-footer {
|
||||||
padding-right: 40px;
|
padding-right: 50px;
|
||||||
font-weight: 400;
|
font-weight: 400;
|
||||||
color: var(--second-color);
|
color: var(--second-color);
|
||||||
position: relative;
|
position: relative;
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user