This commit is contained in:
Владимир Фёдоров 2026-03-20 03:35:52 +07:00
parent ac58312aa2
commit 19cf4c68b4
2 changed files with 5 additions and 12 deletions

View File

@ -67,7 +67,6 @@
body { body {
min-height: 100dvh; min-height: 100dvh;
color: var(--color-text); color: var(--color-text);
background: var(--main-back-color);
transition: transition:
color 0.5s, color 0.5s,
background-color 0.5s; background-color 0.5s;

View File

@ -211,7 +211,6 @@ onMounted(() => {
<div class="body-custom"> <div class="body-custom">
<div class="game-header"> <div class="game-header">
<div class="game-header-empty-block"></div>
<img alt="Вечерний детектив" class="logo" src="@/assets/logo_belt.png" /> <img alt="Вечерний детектив" class="logo" src="@/assets/logo_belt.png" />
<BeltMiniBlock class="game-header-belt-mini"> <BeltMiniBlock class="game-header-belt-mini">
</BeltMiniBlock> </BeltMiniBlock>
@ -300,7 +299,6 @@ onMounted(() => {
<style scoped> <style scoped>
body { body {
overflow: hidden; overflow: hidden;
background-color: gray;
} }
@font-face { @font-face {
@ -314,13 +312,13 @@ body {
.body-custom { .body-custom {
font-size: medium; font-size: medium;
height: calc(100vh - 100px);
background-color: gray; background-color: gray;
height: 100vh;
} }
.form-custom { .form-custom {
position: fixed; position: fixed;
bottom: 10px; bottom: 0;
left: 0; left: 0;
width: 100%; width: 100%;
color: white; color: white;
@ -376,7 +374,7 @@ body {
.messages-block { .messages-block {
top: 95px; top: 95px;
height: calc(100dvh - 95px - 90px + 5px); height: calc(100dvh - 100px - 76px);
overflow-y: auto; overflow-y: auto;
scrollbar-width: none; scrollbar-width: none;
position: relative; position: relative;
@ -442,15 +440,11 @@ body {
.game-header { .game-header {
height: 100px; height: 100px;
position: fixed; position: fixed;
top: 0; top: 5px;
left: 0; left: 0;
width: 100%; width: 100%;
color: white; color: white;
z-index: 1000; z-index: 2000;
}
.game-header-empty-block {
height: 5px;
} }
.game-header-belt-mini { .game-header-belt-mini {