feat: update Nimbus marks and relevant CSS

This commit is contained in:
jinhojang6
2024-03-22 04:36:17 +09:00
committed by Jinho Jang
parent fd1b644f65
commit 7798fc152d
7 changed files with 34 additions and 60 deletions
@@ -27,7 +27,7 @@ const config = {
'@acid-info/logos-docusaurus-preset',
/** @type {import('@acid-info/logos-docusaurus-preset').PluginOptions} */
({
businessUnit: 'Nomos',
businessUnit: 'Nimbus',
theme: {
name: 'default',
options: {
@@ -417,10 +417,6 @@ import * as challengesData from '/generated/challenges.json'
<ProfileCard
name="Ben"
imgSrc="https://statusim.bamboohr.com/employees/photos/?h=406fd339da77e69aeef5f357ece3ff3d"
githubUsername="ben"
githubLink="https://github.com/acid-info"
discordUsername="ben#0001"
discordLink="https://discord.gg/2NXGrsqmDq"
/>
</Grid.Item>
<Grid.Item>
@@ -429,8 +425,6 @@ import * as challengesData from '/generated/challenges.json'
imgSrc="https://statusim.bamboohr.com/employees/photos/?h=4d6fcc7c245ca327414ab4d282b509f2"
githubUsername="leo"
githubLink="https://github.com/acid-info"
discordUsername="leo#0001"
discordLink="https://discord.gg/2NXGrsqmDq"
/>
</Grid.Item>
</Grid>
File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 5.1 KiB

After

Width:  |  Height:  |  Size: 4.0 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 5.1 KiB

After

Width:  |  Height:  |  Size: 4.0 KiB

@@ -20,6 +20,8 @@
display: flex;
flex-direction: column;
align-items: center;
width: 936px;
margin: auto;
* {
text-align: center;
@@ -17,6 +17,7 @@
.mdx-profile-card__profile {
display: flex;
align-items: center;
gap: 24px;
}
@@ -84,27 +84,28 @@ export const ProfileCard: React.FC<ProfileCardProps> = ({
>
{name}
</Typography>
<div className="mdx-profile-card__buttons">
{githubUsername && githubLink && (
<Link
href={githubLink}
target="_blank"
className={'mdx-profile-card__link'}
>
<IconGithub />
</Link>
)}
{discordUsername && discordLink && (
<Link
href={discordLink}
target="_blank"
className={'mdx-profile-card__link'}
>
<IconDiscordWhite />
</Link>
)}
</div>
{githubUsername || discordUsername ? (
<div className="mdx-profile-card__buttons">
{githubUsername && githubLink && (
<Link
href={githubLink}
target="_blank"
className={'mdx-profile-card__link'}
>
<IconGithub />
</Link>
)}
{discordUsername && discordLink && (
<Link
href={discordLink}
target="_blank"
className={'mdx-profile-card__link'}
>
<IconDiscordWhite />
</Link>
)}
</div>
) : null}
</div>
</div>
</div>