This commit is contained in:
2026-03-22 01:39:16 +07:00
parent 9e6ee6e7c3
commit 20986e86e2
3 changed files with 43 additions and 53 deletions
+21 -9
View File
@@ -205,15 +205,6 @@ onMounted(() => {
</template>
<style scoped>
body {
overflow: hidden;
}
@font-face {
font-family: a_OldTyper;
src: url('@/assets/a_OldTyper.ttf');
}
.hr {
margin: 7px 0;
}
@@ -424,4 +415,25 @@ body {
.controller-metal-right {
right: -15px;
}
.button-dialog {
background-color: var(--main-color);
font-weight: 600;
color: white;
padding: 6px 14px;
border: 1px solid #ddd;
border-radius: 15px;
font-size: 16px;
margin-right: 6px;
}
.button-dialog:hover {
background-color: var(--main-color);
opacity: 0.9;
}
.button-dialog:disabled {
opacity: 0.5;
}
</style>
+17
View File
@@ -71,8 +71,25 @@ onMounted(() => {
</template>
<style scoped>
.input-custom {
width: 100%;
box-sizing: border-box; /* обязательно! */
margin-right: 15px;
}
.error-message {
color: brown;
margin: 16px 0;
}
.input-custom, .button-custom {
padding: 12px 16px;
border: 1px solid #ddd;
border-radius: 15px;
font-size: 16px;
}
.button-container {
display: flex;
}
</style>