Fix styling

This commit is contained in:
elpekenin
2022-10-16 11:21:27 +02:00
parent 7ef631fe35
commit a285b3e564
3 changed files with 14 additions and 9 deletions
+1 -4
View File
@@ -1,8 +1,5 @@
--- ---
import socialIcons from "@assets/socialIcons";
import { SOCIALS } from "src/config";
import Hr from "./Hr.astro"; import Hr from "./Hr.astro";
import LinkButton from "./LinkButton.astro";
import Socials from "./Socials.astro"; import Socials from "./Socials.astro";
const currentYear = new Date().getFullYear(); const currentYear = new Date().getFullYear();
@@ -17,7 +14,7 @@ const { noMarginTop = false } = Astro.props;
<footer class={`${noMarginTop ? "" : "mt-auto"}`}> <footer class={`${noMarginTop ? "" : "mt-auto"}`}>
<Hr noPadding /> <Hr noPadding />
<div class="footer-wrapper"> <div class="footer-wrapper">
<Socials /> <Socials centered />
<div class="copyright-wrapper"> <div class="copyright-wrapper">
<span>Copyright &#169; {currentYear}</span> <span>Copyright &#169; {currentYear}</span>
<span class="separator">&nbsp;|&nbsp;</span> <span class="separator">&nbsp;|&nbsp;</span>
+8 -3
View File
@@ -2,10 +2,16 @@
import { SOCIALS } from "src/config"; import { SOCIALS } from "src/config";
import LinkButton from "./LinkButton.astro"; import LinkButton from "./LinkButton.astro";
import socialIcons from "@assets/socialIcons"; import socialIcons from "@assets/socialIcons";
export interface Props {
centered?: boolean;
}
const { centered = false } = Astro.props;
--- ---
<div class="social-icons"> <div class={`social-icons ${centered ? "flex" : ""}`}>
{ {
SOCIALS.filter((social) => social.active).map((social) => ( SOCIALS.filter((social) => social.active).map((social) => (
<LinkButton <LinkButton
@@ -21,8 +27,7 @@ import socialIcons from "@assets/socialIcons";
<style> <style>
.social-icons { .social-icons {
@apply flex flex-wrap justify-center gap-1; @apply flex-wrap justify-center gap-1;
@apply mt-1 sm:mt-0 sm:ml-2 sm:space-x-1;
} }
.link-button { .link-button {
@apply p-2 sm:p-1 hover:rotate-6; @apply p-2 sm:p-1 hover:rotate-6;
+5 -2
View File
@@ -47,7 +47,7 @@ const sortedPosts = getSortedPosts(posts);
> for more info. > for more info.
</p> </p>
<div class="social-wrapper"> <div class="social-wrapper">
<div class="whitespace-nowrap">Social Links:</div> <div class="social-links">Social Links:</div>
<Socials /> <Socials />
</div> </div>
</section> </section>
@@ -106,7 +106,7 @@ const sortedPosts = getSortedPosts(posts);
<Footer /> <Footer />
</Layout> </Layout>
<style is:global> <style>
/* ===== Hero Section ===== */ /* ===== Hero Section ===== */
#hero { #hero {
@apply pt-8; @apply pt-8;
@@ -126,6 +126,9 @@ const sortedPosts = getSortedPosts(posts);
.social-wrapper { .social-wrapper {
@apply flex flex-col sm:flex-row sm:items-center mt-4 mb-6; @apply flex flex-col sm:flex-row sm:items-center mt-4 mb-6;
} }
.social-links {
@apply whitespace-nowrap mr-2 sm:mb-0 mb-1;
}
/* ===== Featured & Recent Posts Sections ===== */ /* ===== Featured & Recent Posts Sections ===== */
#featured, #featured,