Skip to content

Commit 6d617d1

Browse files
committed
chore: update credits
1 parent 36062e6 commit 6d617d1

File tree

6 files changed

+23
-10
lines changed

6 files changed

+23
-10
lines changed

public/index.dev.html

+9-5
Original file line numberDiff line numberDiff line change
@@ -17,17 +17,21 @@ <h1>PIXEL ART TO CSS</h1>
1717
<div class="col-1-3">
1818
<div class="header__social">
1919
<div class="header__credits">
20-
<a href="https://ko-fi.com/jvalen" target="_blank">
21-
by <span>JVALEN</span>
22-
<img height="26" width="39" src="bmac-icon.png" alt="Ko-fi" />
23-
</a>
20+
<a target="_blank" href="https://coindrop.to/jvalen"
21+
>by <span>JVALEN</span
22+
><img
23+
height="26"
24+
width="26"
25+
src="coindrop-img.png"
26+
alt="coindrop.to"
27+
/></a>
2428
</div>
2529
<div>
2630
<iframe
2731
src="https://ghbtns.com/github-btn.html?user=jvalen&repo=pixel-art-react&type=star&count=true"
2832
frameborder="0"
2933
scrolling="0"
30-
width="100px"
34+
width="94px"
3135
height="20px"
3236
>
3337
</iframe>

public/index.html

+7-3
Original file line numberDiff line numberDiff line change
@@ -38,17 +38,21 @@ <h1><a href="/">PIXEL ART TO CSS</a></h1>
3838
<div class="col-1-3">
3939
<div class="header__social">
4040
<div class="header__credits">
41-
<a target="_blank" href="https://ko-fi.com/jvalen"
41+
<a target="_blank" href="https://coindrop.to/jvalen"
4242
>by <span>JVALEN</span
43-
><img height="26" width="39" src="bmac-icon.png" alt="Ko-fi"
43+
><img
44+
height="26"
45+
width="26"
46+
src="coindrop-img.png"
47+
alt="coindrop.to"
4448
/></a>
4549
</div>
4650
<div>
4751
<iframe
4852
src="https://ghbtns.com/github-btn.html?user=jvalen&amp;repo=pixel-art-react&amp;type=star&amp;count=true"
4953
frameborder="0"
5054
scrolling="0"
51-
width="100px"
55+
width="94px"
5256
height="20px"
5357
></iframe>
5458
</div>

src/assets/coindrop-img.png

10.2 KB
Loading

src/css/layout/_header.css

+5
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,11 @@ header {
3030
color: $color-brandyRose;
3131
}
3232

33+
img {
34+
margin: 0 0 0 0.3em;
35+
transition: transform 0.2s ease-in-out;
36+
}
37+
3338
h2 {
3439
display: block;
3540
font-size: 0.8em;

webpack.config.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ module.exports = {
5757
new CopyWebpackPlugin({
5858
patterns: [
5959
{ from: 'src/assets/favicon.ico', to: 'favicon.ico' },
60-
{ from: 'src/assets/bmac-icon.png', to: 'bmac-icon.png' }
60+
{ from: 'src/assets/coindrop-img.png', to: 'coindrop-img.png' }
6161
],
6262
}),
6363
new MiniCssExtractPlugin({

webpack.production.config.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ const config = {
5656
{ from: 'src/assets/favicon.ico', to: 'favicon.ico' },
5757
{ from: 'src/assets/apple-touch-icon.png', to: 'apple-touch-icon.png' },
5858
{ from: 'src/assets/regular-icon.png', to: 'regular-icon.png' },
59-
{ from: 'src/assets/bmac-icon.png', to: 'bmac-icon.png' },
59+
{ from: 'src/assets/coindrop-img.png', to: 'coindrop-img.png' },
6060
{ from: './public/_redirects', to: './' }
6161
],
6262
}),

0 commit comments

Comments
 (0)