feat: get to displaying markdown copy

This commit is contained in:
Stevan Freeborn
2023-04-09 12:52:32 -05:00
parent 72d7cb7a4a
commit da40cdfaba
13 changed files with 135 additions and 43 deletions
+20
View File
@@ -0,0 +1,20 @@
.container {
display: flex;
align-items: center;
width: 100%;
gap: 1rem;
border-bottom: 1px solid #848586;
padding: 5rem;
}
@media screen and (max-width: 1000px) {
.container {
flex-direction: column;
align-items: flex-start;
justify-content: center;
}
}
.container>article {
flex: 1;
}