Skip to content

Commit 21cc186

Browse files
remove gatsby custom config
1 parent 4528807 commit 21cc186

File tree

5 files changed

+27
-37
lines changed

5 files changed

+27
-37
lines changed

components/Footer/Footer.module.css

Lines changed: 17 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -3,51 +3,47 @@
33
flex-wrap: wrap;
44
}
55

6-
.colLeft,
7-
.colRight {
6+
.container > span {
87
width: 50%;
98
padding: 3rem 6rem;
109
}
1110

12-
@media screen and (max-width: 1024px) {
13-
.colLeft,
14-
.colRight {
15-
padding: 3rem;
16-
}
17-
}
18-
19-
.colLeft,
20-
.colRight a {
11+
.container > span,
12+
.container > span a {
2113
color: rgba(255,255,255,0.7);
2214
}
2315

24-
.colLeft {
16+
.container > span:first-child {
2517
text-align: left;
2618
}
2719

28-
.colRight a:hover {
20+
.container > span:last-child a:hover {
2921
text-decoration: none;
3022
}
3123

32-
.colRight {
24+
.container > span:last-child {
3325
text-align: right;
3426
}
3527

3628
@media screen and (max-width: 768px) {
37-
.colLeft,
38-
.colRight {
29+
.container > span:first-child,
30+
.container > span:last-child {
3931
width: 100%;
4032
text-align: center;
4133
padding: 2rem;
4234
}
43-
.col {
44-
padding: 2rem;
45-
}
35+
}
36+
37+
@media screen and (max-width: 1024px) {
38+
.container > span:first-child,
39+
.container > span:last-child {
40+
padding: 3rem;
41+
}
4642
}
4743

4844
@media screen and (max-width: 480px) {
49-
.colLeft,
50-
.colRight {
45+
.container > span:first-child,
46+
.container > span:last-child {
5147
padding: 1rem;
5248
}
5349
}

components/Footer/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@ const now = new Date().getFullYear()
88

99
const Footer = () => (
1010
<footer className={style.container}>
11-
<span className={style.colLeft}>
11+
<span className={style.left}>
1212
<strong>&copy;2007-{now} Incode Snc di Bravo L. e Molinari A.</strong><br/>
1313
Cod Fisc. e P.Iva 01357300191 Iscr. Reg. Imprese di MN n. 01357300191
1414
</span>
15-
<span className={style.colRight}>
15+
<span className={style.right}>
1616
<Link to={prefixLink('/privacy-policy/')}>Privacy policy</Link>
1717
</span>
1818
</footer>

components/Hero/Hero.module.css

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,14 @@
3939
position: absolute;
4040
}
4141

42-
@media screen and (max-width: 768px) {
42+
@media screen and (max-width: 1024px) {
4343
.title {
4444
font-size: 3rem;
4545
}
4646
}
47+
48+
@media screen and (max-width: 480px) {
49+
.title {
50+
font-size: 2.5rem;
51+
}
52+
}

gatsby-node.js

Lines changed: 0 additions & 13 deletions
This file was deleted.

pages/CNAME

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
www.incode.it

0 commit comments

Comments
 (0)