fix the footer timestamp being too large for the screen

eti fe8011de e7ac2654

Changed files
+7 -5
src
pages
+7 -5
src/pages/index.astro
··· 13 13 everything so far<code>$ ls /Users/eti/Desktop/**</code> 14 14 </h1> 15 15 <List /> 16 - <div class="bottom"> 16 + <div class="footer"> 17 17 <Socials /> 18 18 <!-- <span class="footer-author">eti / sds</span> --> 19 19 <span class="footer-timestamp" ··· 59 59 align-items: center; 60 60 } 61 61 62 - .bottom { 62 + .footer { 63 63 height: 100%; 64 64 max-height: -webkit-fill-available; 65 65 display: flex; 66 - flex-direction: row; 67 - justify-content: space-between; 66 + flex-direction: column; 67 + justify-content: end; 68 68 align-items: end; 69 69 } 70 70 71 71 @media screen and (min-width: 700px) { 72 - .bottom { 72 + .footer { 73 73 height: inherit; 74 + flex-direction: row; 75 + justify-content: space-between; 74 76 } 75 77 76 78 body {