mirror of
https://github.com/yawaflua/LuckyDiamond.git
synced 2025-12-10 12:19:31 +02:00
Merge branch 'DevelopMadara'
This commit is contained in:
@@ -677,6 +677,7 @@
|
||||
height: 732px;
|
||||
margin-top: 10px;
|
||||
margin-left: 1px;
|
||||
/* overflow-y: auto; */
|
||||
}
|
||||
.bottom_card {
|
||||
display: flex;
|
||||
|
||||
@@ -210,6 +210,10 @@ button {
|
||||
margin: 0.625rem 2.438rem 1.125rem 1.125rem;
|
||||
}
|
||||
|
||||
.about {
|
||||
grid-area: about;
|
||||
}
|
||||
|
||||
/* /Profile */
|
||||
|
||||
/* Saper */
|
||||
@@ -235,6 +239,24 @@ button {
|
||||
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 */
|
||||
|
||||
/* Media */
|
||||
|
||||
@@ -1,13 +1,15 @@
|
||||
<template>
|
||||
<div class="content__grid-profile" >
|
||||
<aside-bar-component></aside-bar-component>
|
||||
<div class="content-grid--about">
|
||||
<aside-bar-component></aside-bar-component>
|
||||
|
||||
<section class="about">
|
||||
|
||||
<develop-component></develop-component>
|
||||
|
||||
<header-component></header-component>
|
||||
</section>
|
||||
<header-component></header-component>
|
||||
|
||||
<develop-component></develop-component>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
<script>
|
||||
import DevelopComponent from "@/components/DevelopComponent.vue";
|
||||
@@ -15,21 +17,20 @@ import AsideBarComponent from "@/components/AsidebarComponent.vue";
|
||||
import HeaderComponent from "@/components/HeaderComponent.vue";
|
||||
|
||||
export default {
|
||||
data () {
|
||||
return {
|
||||
Object: {
|
||||
bg:'value',
|
||||
nickname: 'value',
|
||||
icons: {},
|
||||
textTacholgy: {'text1': 'text2'}
|
||||
}
|
||||
}
|
||||
},
|
||||
components: {
|
||||
data() {
|
||||
return {
|
||||
Object: {
|
||||
bg: "value",
|
||||
nickname: "value",
|
||||
icons: {},
|
||||
textTacholgy: { text1: "text2" },
|
||||
},
|
||||
};
|
||||
},
|
||||
components: {
|
||||
HeaderComponent,
|
||||
AsideBarComponent,
|
||||
DevelopComponent
|
||||
}
|
||||
}
|
||||
|
||||
DevelopComponent,
|
||||
},
|
||||
};
|
||||
</script>
|
||||
Reference in New Issue
Block a user