mirror of
https://github.com/yawaflua/LuckyDiamond.git
synced 2025-12-10 12:19:31 +02:00
created profilemobile page template and grid
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
body {
|
||||
overflow-y: scroll;
|
||||
}
|
||||
|
||||
.content-grid__mobile-profile {
|
||||
display: grid;
|
||||
grid-auto-columns: 1fr;
|
||||
grid-template-columns: repeat(4, 1fr);
|
||||
grid-template-rows: repeat(7, 1fr);
|
||||
grid-template-areas:
|
||||
"header-mobile header-mobile header-mobile header-mobile"
|
||||
"profile-mobile profile-mobile profile-mobile profile-mobile"
|
||||
"profile-mobile profile-mobile profile-mobile profile-mobile"
|
||||
"footer-mobile footer-mobile footer-mobile footer-mobile";
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.profile-mobile {
|
||||
grid-area: profile-mobile;
|
||||
}
|
||||
Reference in New Issue
Block a user