init finish

This commit is contained in:
2022-05-12 20:32:34 +08:00
parent 4f976b19cd
commit 5848a7cdaf
22 changed files with 7335 additions and 174 deletions

20
styles/Post.module.css Normal file
View File

@@ -0,0 +1,20 @@
.post {
padding-top: 1rem;
}
.grid {
display: grid;
grid-gap: 1rem;
grid-template-columns: repeat(auto-fit, 15rem);
}
.grid > * {
padding: 0.3rem;
cursor: pointer;
border-radius: 1rem;
}
.grid > *:hover {
background-color: lightblue;
transition: cubic-bezier(1, 0, 0, 1);
}