Change end-text to be a flexbox

This commit is contained in:
Sangelo 2024-02-16 09:55:27 +01:00
parent 55ba70a343
commit 001978ce62
2 changed files with 7 additions and 4 deletions

View file

@ -123,10 +123,10 @@
</div> </div>
</a> </a>
</ul> </ul>
<p class="end-text"> <div class="end-text">
<IconCobweb size="2em"/><br> <IconCobweb size="2em"/>
You've reached the end! There might be more projects coming soon 🤔... You've reached the end! There might be more projects coming soon 🤔...
</p> </div>
</div> </div>
</div> </div>
</content> </content>

View file

@ -125,7 +125,10 @@
} }
.end-text { .end-text {
display: flex;
flex-direction: column;
align-items: center;
gap: 0.5em;
margin: 4% auto 0 auto; margin: 4% auto 0 auto;
color: $star-gray; color: $star-gray;
text-align: center;
} }