Merge branch 'DevelopMadara' of https://github.com/danilt2000/LuckyDiamond into DevelopMadara

This commit is contained in:
Madara0330E
2024-02-18 20:02:51 +03:00
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>
@@ -15,21 +17,20 @@ import AsideBarComponent from "@/components/AsidebarComponent.vue";
import HeaderComponent from "@/components/HeaderComponent.vue"; import HeaderComponent from "@/components/HeaderComponent.vue";
export default { 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>