added grid for profile page

This commit is contained in:
Kostya
2023-11-25 22:41:40 +03:00
parent 5de313bf19
commit a3156fc16e
2 changed files with 42 additions and 1 deletions

View File

@@ -39,6 +39,24 @@ body, html {
grid-gap: 10px; grid-gap: 10px;
} }
.content__grid-profile {
display: grid;
grid-template-columns: .35fr repeat(5, 1fr) 1fr;
grid-template-rows: auto 0fr repeat(4, 1fr);
grid-auto-columns: 1fr;
grid-auto-flow: row;
grid-template-areas:
"menu header header header header header header"
"menu profile profile payments payments payments chat"
"menu profile profile payments payments payments chat"
"menu profile profile payments payments payments chat"
"menu profile profile payments payments payments chat"
"menu profile profile payments payments payments chat"
"menu profile profile payments payments payments chat";
grid-gap: 10px;
height: 100%;
}
/* /Content Grid */ /* /Content Grid */
@@ -99,4 +117,20 @@ body, html {
width: 100%; width: 100%;
} }
/* /GameMode */ /* /GameMode */
/* Profile */
.profile {
grid-area: profile;
}
/* /Profile */
/* Payments */
.payments {
grid-area: payments;
}
/* /Payments */

View File

@@ -6,6 +6,13 @@
<header-component></header-component> <header-component></header-component>
<div class="profile">
</div>
<div class="payments">
</div>
</div> </div>
</template> </template>