Add fix for about page

This commit is contained in:
Hepatica
2024-02-17 18:52:34 +01:00
parent 8668680ec9
commit ad13bda5e9
3 changed files with 47 additions and 23 deletions

View File

@@ -677,6 +677,7 @@
height: 732px; height: 732px;
margin-top: 10px; margin-top: 10px;
margin-left: 1px; margin-left: 1px;
/* overflow-y: auto; */
} }
.bottom_card { .bottom_card {
display: flex; display: flex;

View File

@@ -210,6 +210,10 @@ button {
margin: 0.625rem 2.438rem 1.125rem 1.125rem; margin: 0.625rem 2.438rem 1.125rem 1.125rem;
} }
.about {
grid-area: about;
}
/* /Profile */ /* /Profile */
/* Saper */ /* Saper */
@@ -235,6 +239,24 @@ button {
grid-area: crashplayers; grid-area: crashplayers;
} }
.content-grid--about {
display: grid;
grid-auto-columns: 1fr;
grid-template-columns: 0.35fr repeat(5, 1fr) 1fr;
grid-template-rows: auto 0fr repeat(4, 1fr);
grid-template-areas:
"menu header header header header header header"
"menu about about about about about chat"
"menu about about about about about chat"
"menu about about about about about chat"
"menu about about about about about chat"
"menu about about about about about chat"
"menu about about about about about chat";
grid-gap: 0.625rem;
}
/* /Crash */ /* /Crash */
/* Media */ /* Media */

View File

@@ -1,12 +1,14 @@
<template> <template>
<div class="content__grid-profile" > <div class="content-grid--about">
<aside-bar-component></aside-bar-component> <aside-bar-component></aside-bar-component>
<section class="about">
<header-component></header-component>
<develop-component></develop-component> <develop-component></develop-component>
</section>
<header-component></header-component>
</div> </div>
</template> </template>
<script> <script>
@@ -18,18 +20,17 @@ export default {
data() { data() {
return { return {
Object: { Object: {
bg:'value', bg: "value",
nickname: 'value', nickname: "value",
icons: {}, icons: {},
textTacholgy: {'text1': 'text2'} textTacholgy: { text1: "text2" },
} },
} };
}, },
components: { components: {
HeaderComponent, HeaderComponent,
AsideBarComponent, AsideBarComponent,
DevelopComponent DevelopComponent,
} },
} };
</script> </script>