Update Hr with noPadding prop

This commit is contained in:
Sat Naing
2022-09-11 15:20:29 +06:30
parent 899877ea69
commit fe5c1b2388
+4 -1
View File
@@ -4,7 +4,7 @@ import LinkButton from "./LinkButton.astro";
--- ---
<footer> <footer>
<Hr className="px-0" /> <Hr noPadding />
<div class="footer-wrapper"> <div class="footer-wrapper">
<div class="social-icons"> <div class="social-icons">
<LinkButton href="https://github.com/satnaing" className="link-button"> <LinkButton href="https://github.com/satnaing" className="link-button">
@@ -49,6 +49,9 @@ import LinkButton from "./LinkButton.astro";
</footer> </footer>
<style> <style>
footer {
@apply mt-auto w-full;
}
.footer-wrapper { .footer-wrapper {
@apply py-6 sm:py-4 flex flex-col sm:flex-row-reverse justify-between items-center; @apply py-6 sm:py-4 flex flex-col sm:flex-row-reverse justify-between items-center;
} }