Check mark fixed (#1405)
This commit is contained in:
parent
c77e793360
commit
68e3cfd8f6
|
@ -12,7 +12,6 @@ import {
|
||||||
} from "../../components/Icons";
|
} from "../../components/Icons";
|
||||||
import useSubscribe from "./useSubscribe";
|
import useSubscribe from "./useSubscribe";
|
||||||
import Link from "../Link";
|
import Link from "../Link";
|
||||||
|
|
||||||
const social = [
|
const social = [
|
||||||
{ name: "Discord", Icon: DiscordSmall, href: "https://discord.gg/skynetlabs" },
|
{ name: "Discord", Icon: DiscordSmall, href: "https://discord.gg/skynetlabs" },
|
||||||
{ name: "Twitter", Icon: TwitterSmall, href: "https://twitter.com/SkynetLabs" },
|
{ name: "Twitter", Icon: TwitterSmall, href: "https://twitter.com/SkynetLabs" },
|
||||||
|
@ -73,7 +72,7 @@ const CommunitySection = () => {
|
||||||
/>
|
/>
|
||||||
<button type="button" onClick={() => setExperienced(!experienced)}>
|
<button type="button" onClick={() => setExperienced(!experienced)}>
|
||||||
<CheckActive
|
<CheckActive
|
||||||
className={classnames("bg-palette-600 rounded-full h-6 w-6", { "opacity-20": !experienced })}
|
className={classnames("bg-palette-600 rounded-full h-8 w-8", { "opacity-20": !experienced })}
|
||||||
/>
|
/>
|
||||||
</button>
|
</button>
|
||||||
<label htmlFor="newsletter-experience" className="text-xs font-content pl-2 leading-6 cursor-pointer">
|
<label htmlFor="newsletter-experience" className="text-xs font-content pl-2 leading-6 cursor-pointer">
|
||||||
|
|
Reference in New Issue