Skip to content
This repository has been archived by the owner on Mar 27, 2024. It is now read-only.

Commit

Permalink
Merge pull request #88 from doras-to/staging
Browse files Browse the repository at this point in the history
  • Loading branch information
tommerty authored Dec 24, 2023
2 parents 5e004ba + 70abd34 commit 30f91e8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/components/ui/footer.astro
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ import { FaXTwitter } from "react-icons/fa6/index.js";
<a href="/contact-us" class="link link-hover text-lg font-bold">Get In Touch</a>
</nav>
</footer>
<div class="py-6 flex items-center gap-3">
<div class="py-6 flex md:flex-row flex-col items-center gap-3">
<JoinWaitlist text="Join The Waitlist" variant="outline" className="font-black text-3xl p-9 text-surface-900 hover:text-surface-50 border-surface-900" client:load />
<div class="ml-auto flex gap-3">
<a class="p-2 rounded-xl border-2 border-surface-900" href="https://x.com/doras_to"><FaXTwitter size="60" /></a>
Expand Down
6 changes: 3 additions & 3 deletions src/components/users_page/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -161,9 +161,9 @@ if (!user_user.theme.font || user_user.theme.font.font.length == 0) {
if (link.type == "link") {
if (link.colour?.toggle) {
let userstyle: any = { backgroundColor: link.colour.background, color: getTextColorForBackground(link.colour.background) };
if (user_user.theme.inset) {
userstyle = { backgroundColor: link.colour.background, borderWidth: "2px", borderColor: user_user.theme.button, color: getTextColorForBackground(user_user.theme.background) };
}
// if (user_user.theme.inset) {
// userstyle = { backgroundColor: link.colour.background, borderWidth: "2px", borderColor: user_user.theme.button, color: getTextColorForBackground(user_user.theme.background) };
// }
return <LinksButton client:load id={user_user.id} verifiedData={VerifiedlinksData} link={link} style={userstyle} className={user_user.theme.button_rounded} text={link.name} href={link.url || ""} bgColor="primary-500" Icon={link.icon || ""} />;
}
return <LinksButton client:load id={user_user.id} verifiedData={VerifiedlinksData} link={link} style={style} className={user_user.theme.button_rounded} text={link.name} href={link.url || ""} bgColor="primary-500" Icon={link.icon || ""} />;
Expand Down

0 comments on commit 30f91e8

Please sign in to comment.