Пофиксили мелкие баги в стилях

This commit is contained in:
IliaMiheev
2026-06-02 10:32:38 +03:00
parent 6253b09ecd
commit 4cafc621a1
4 changed files with 39 additions and 29 deletions
+2 -2
View File
@@ -18,13 +18,13 @@ const props = defineProps({
<div class="code-view" v-if="show">
<CustomButton
@click.stop="$emit('update:show', false)">
Вернуться к сохранению сгенерированного кода
Вернуться к генерации маршрута
</CustomButton>
<CodeBlock :code="code" />
<CustomButton
@click.stop="$emit('update:show', false)">
Вернуться к сохранению сгенерированного кода
Вернуться к генерации маршрута
</CustomButton>
<MovementButtons/>
</div>
+6 -5
View File
@@ -80,9 +80,9 @@ useEventListener("keydown", handleKeydown);
overflow-x: auto;
display: flex;
flex-direction: column;
max-width: 500px;
width: 90%;
width: 55%;
border-radius: 5px;
font-size: 1.5rem;
}
.modal-header,
@@ -110,16 +110,17 @@ useEventListener("keydown", handleKeydown);
}
.modal-footer {
justify-content: flex-end;
border-top: 1px solid white;
display: flex;
gap: 5px;
}
.modal-footer button {
justify-content: flex-end;
width: 33%;
border-top: 1px solid white;
padding: 5px;
color: black;
font-size: 15px;
font-size: 20px;
border-radius: 5px;
}
+8 -2
View File
@@ -99,8 +99,8 @@ defineExpose({open: () => (isOpen.value = true), close: closeMenu});
display: flex;
flex-direction: column;
justify-content: space-around;
width: 40px;
height: 30px;
min-width: 40px;
min-height: 30px;
background: rgba(255, 255, 255, 0.508);
border: 1px solid #383838;
cursor: pointer;
@@ -109,12 +109,18 @@ defineExpose({open: () => (isOpen.value = true), close: closeMenu});
h1 {
text-align: center;
font-size: 3rem;
}
.menu-content {
display: flex;
flex-direction: column;
gap: 10px;
padding-bottom: 20px;
}
.menu-content button{
font-size: 1.2rem;
}
.line {