mirror of
https://github.com/yawaflua/LuckyDiamond.git
synced 2025-12-10 04:09:29 +02:00
Merge branch 'DevelopMadara' of https://github.com/danilt2000/LuckyDiamond into DevelopMadara
This commit is contained in:
@@ -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;
|
||||||
|
|||||||
@@ -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 */
|
||||||
|
|||||||
@@ -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>
|
||||||
Reference in New Issue
Block a user