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>
</a>
</ul>
<p class="end-text">
<IconCobweb size="2em"/><br>
<div class="end-text">
<IconCobweb size="2em"/>
You've reached the end! There might be more projects coming soon 🤔...
</p>
</div>
</div>
</div>
</content>

View file

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