(create) created dummy posts and styled it

This commit is contained in:
Yusuf İpek
2021-08-07 14:52:17 +03:00
parent 55f7b9e9fb
commit df8e941c9f
4 changed files with 47 additions and 6 deletions
+1 -1
View File
@@ -23,7 +23,7 @@
list-style-type: none;
li:not(:last-child) {
margin-right: 1rem;
margin-right: 2.5rem;
}
&-item {
+22 -1
View File
@@ -1,3 +1,24 @@
.homepage {
height: 90vh;
font-size: 2rem;
list-style-type: none;
justify-items: center;
display: grid;
justify-content: center;
&_heading-1 {
text-align: center;
}
&_posts {
display: grid;
grid-template-columns: repeat(3, 1fr);
width: 50%;
min-height: 100vh;
li {
margin-top: 2rem;
text-align: center;
}
}
}