Skip to content

Commit de9a0e9

Browse files
committed
Fixed css
1 parent a5d7ad3 commit de9a0e9

File tree

4 files changed

+13
-2
lines changed

4 files changed

+13
-2
lines changed

website/src/components/HomepageSponsors/index.js

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,11 @@ const SponsorList = [
1717
name: 'DoiT',
1818
logo: require('@site/static/img/doit-logo.png').default,
1919
link: 'https://doit.com'
20+
},
21+
{
22+
name: 'Become a sponsor!',
23+
logo: require('@site/static/img/donation.png').default,
24+
link: 'https://github.com/sponsors/labstack'
2025
}
2126
];
2227

@@ -25,7 +30,7 @@ function Sponsor({name, logo, link}) {
2530
<div className={clsx('col col--2')}>
2631
<div className="text--left padding-horiz--md">
2732
<h4>{name}</h4>
28-
<a href="https://shiguredo.jp" target="_blank">
33+
<a href={link} target="_blank">
2934
<img className={styles.sponsorLogo} src={logo} alt={name} />
3035
</a>
3136
</div>

website/src/pages/index.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@ function HomepageHeader() {
1414
<div className="container">
1515
<h1 className="hero__title">{siteConfig.title}</h1>
1616
<p className="hero__subtitle">{siteConfig.tagline}</p>
17-
<img
17+
<img
18+
className={styles.heroTerminal}
1819
src={require('../../static/img/terminal.png').default}
1920
alt="Terminal"
2021
/>

website/src/pages/index.module.css

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,3 +21,8 @@
2121
align-items: center;
2222
justify-content: center;
2323
}
24+
25+
.heroTerminal {
26+
width: 50%;
27+
height: auto;
28+
}

website/static/img/donation.png

22.1 KB
Loading

0 commit comments

Comments
 (0)