Skip to content

Commit 2e10472

Browse files
bigger icons
1 parent 076760e commit 2e10472

File tree

9 files changed

+14
-15
lines changed

9 files changed

+14
-15
lines changed

.eslintignore

-1
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,3 @@ reports
44
.env.*
55
*.log
66
package-lock.json
7-
webpack.config.js

src/components/About/About.module.css

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
@value vars: "../../variables.module.css";
2-
@value containerWidth from vars;
2+
@value containerwidth from vars;
33

44
.blurb {
55
composes: container block from global;

src/components/Acclaim/Acclaim.module.css

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
@value vars: "../../variables.module.css";
2-
@value surface100, surface300, surface500, surfacemixed100, containerWidth from vars;
2+
@value surface100, surface300, surface500, surfacemixed100, containerwidth from vars;
33

44
.breakout {
55
border-top: 1px solid surface100;
@@ -9,7 +9,7 @@
99

1010
.acclaim {
1111
composes: container from global;
12-
padding: 1em 2em;
12+
padding: 1em 2em !important;
1313
}
1414

1515
.acclaim > ul {
@@ -18,7 +18,7 @@
1818
justify-content: space-between;
1919
padding: 10px 20px;
2020
width: 100%;
21-
max-width: containerWidth;
21+
max-width: containerwidth;
2222
overflow-x: auto;
2323
list-style: none;
2424
}

src/components/Skills/Skills.jsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ const Skills = () => {
2020
<li key={text}>
2121
<Icon
2222
name={icon}
23-
size="2em"
23+
size="3em"
2424
className={styles.skill}
2525
title={text}
2626
data-text={text}

src/components/Skills/Skills.module.css

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
@value vars: "../../variables.module.css";
2-
@value primary300, surface100, surface300, surface500, surfacemixed100, containerWidth from vars;
2+
@value primary300, surface100, surface300, surface500, surfacemixed100, containerwidth from vars;
33

44
.breakout {
55
border-top: 1px solid surface100;
@@ -9,7 +9,7 @@
99

1010
.skills {
1111
composes: container from global;
12-
padding: 1em 2em;
12+
padding: 1em 2em !important;
1313
}
1414

1515
.skills > ul {
@@ -18,7 +18,7 @@
1818
justify-content: space-between;
1919
padding: 10px 20px;
2020
width: 100%;
21-
max-width: containerWidth;
21+
max-width: containerwidth;
2222
overflow-x: auto;
2323
list-style: none;
2424
}

src/components/Socials/SocialLink.jsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ const SocialLink = ({ type, title, href }) => {
55
return (
66
<li>
77
<a href={href} rel="noopener noreferrer" title={title}>
8-
{<Icon name={type} size="2em" color="black" title={title} />}
8+
{<Icon name={type} size="3em" color="black" title={title} />}
99
</a>
1010
</li>
1111
)

src/components/Socials/Socials.module.css

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
@value vars: "../../variables.module.css";
2-
@value surface100, surface400, containerWidth from vars;
2+
@value surface100, surface400, containerwidth from vars;
33

44
.socials {
55
display: flex;
@@ -16,7 +16,7 @@
1616
justify-content: space-between;
1717
padding: 10px 20px;
1818
width: 100%;
19-
max-width: containerWidth;
19+
max-width: containerwidth;
2020
overflow-x: auto;
2121
list-style: none;
2222
}

src/index.module.css

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
@import url('https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');
22

33
@value vars: "./variables.module.css";
4-
@value surface600, surface000, containerWidth from vars;
4+
@value surface600, surface000, containerwidth from vars;
55

66
/*
77
@import url(https://fonts.googleapis.com/css?family=Muli:200,300,400,700);
@@ -99,7 +99,7 @@ strong {
9999
margin-right: auto;
100100
margin-left: auto;
101101
padding: 0 2em;
102-
max-width: containerWidth;
102+
max-width: containerwidth;
103103
}
104104

105105
:global .block {

src/variables.module.css

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,4 @@
2424
@value surfacemixed600: #9ba3a2;
2525

2626
/** Sizes */
27-
@value containerWidth: 1000px;
27+
@value containerwidth: 1000px;

0 commit comments

Comments
 (0)