Change end-text to be a flexbox
This commit is contained in:
parent
55ba70a343
commit
001978ce62
2 changed files with 7 additions and 4 deletions
|
@ -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>
|
||||||
|
|
|
@ -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;
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue