mirror of
https://github.com/uetchy/namae.git
synced 2025-10-14 23:22:19 +09:00
fix: theme-color
chore: fix margin chore: update deps
This commit is contained in:
@@ -39,6 +39,7 @@ const Contributors: React.FC = () => {
|
||||
<Container>
|
||||
{data.contributors.map((contributor) => (
|
||||
<Tooltip
|
||||
key={contributor.login}
|
||||
overlay={`${contributor.name} (${contributor.contributions.join(
|
||||
', '
|
||||
)})`}
|
||||
|
@@ -154,7 +154,7 @@ const About = () => {
|
||||
target="_blank"
|
||||
>
|
||||
<SponsorBadge>
|
||||
<GoHeart size="1.3rem" />
|
||||
<GoHeart size="1.3em" />
|
||||
<span>Sponsor</span>
|
||||
</SponsorBadge>
|
||||
</OutboundLink>
|
||||
|
@@ -84,10 +84,10 @@ const Welcome: React.FC = () => {
|
||||
</ListItem>
|
||||
))}
|
||||
</HighlightSection>
|
||||
<Section>
|
||||
{/* <Section>
|
||||
<Title>Integrations</Title>
|
||||
<blockquote>Soon</blockquote>
|
||||
</Section>
|
||||
</Section> */}
|
||||
</Container>
|
||||
);
|
||||
};
|
||||
@@ -95,7 +95,7 @@ const Welcome: React.FC = () => {
|
||||
export default Welcome;
|
||||
|
||||
const Container = styled.div`
|
||||
padding-bottom: 40px;
|
||||
/* padding-bottom: 40px; */
|
||||
text-align: center;
|
||||
font-size: 1.5rem;
|
||||
|
||||
@@ -107,7 +107,7 @@ const Container = styled.div`
|
||||
`;
|
||||
|
||||
const Section = styled.div`
|
||||
padding: 100px 20vw;
|
||||
padding: 40px 20vw 100px;
|
||||
|
||||
${mobile} {
|
||||
padding: 60px 40px;
|
||||
|
@@ -40,7 +40,7 @@ serviceWorker.register({
|
||||
onUpdate: (registration) => {
|
||||
console.log('Update available');
|
||||
|
||||
toast.dark('New version available! Click here to update.', {
|
||||
toast.success('New version available! Click here to update.', {
|
||||
onClose: () => {
|
||||
window.location.reload();
|
||||
},
|
||||
|
@@ -37,7 +37,7 @@ export const Content = styled.div`
|
||||
|
||||
export const Header = styled.header`
|
||||
padding: 0 40px;
|
||||
background-image: linear-gradient(180deg, #bda2ff 0%, #1b24cc 99%);
|
||||
background-image: linear-gradient(#9f78ff, #1b24cc 99%);
|
||||
|
||||
${mobile} {
|
||||
padding: 0 20px;
|
||||
|
Reference in New Issue
Block a user