Skip to content
This repository was archived by the owner on Apr 21, 2026. It is now read-only.

Commit cabad42

Browse files
author
dpatanin
committed
reposition frontpage feature list on mobile
1 parent 4b9be72 commit cabad42

4 files changed

Lines changed: 21 additions & 14 deletions

File tree

src/components/Footer.js

Lines changed: 10 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,31 @@
1-
import React from 'react';
2-
import { graphql, Link, StaticQuery } from 'gatsby';
1+
import React from "react";
2+
import { graphql, Link, StaticQuery } from "gatsby";
33

44
const Footer = props => (
55
<div className="footer-strip">
66
<div className="container">
77
<div className="row">
88
<div className="col-12">
99
<div className="footer">
10-
<h3 className="footer-title">{props.data.site.siteMetadata.title}</h3>
10+
<h3 className="footer-title">
11+
{props.data.site.siteMetadata.title}
12+
</h3>
1113
<ul className="footer-menu">
1214
<li>
13-
{' '}
15+
{" "}
1416
<Link to="/">Home</Link>
1517
</li>
1618
<li>
17-
{' '}
19+
{" "}
1820
<Link to="/contact">Contact</Link>
1921
</li>
2022
<li>
21-
{' '}
23+
{" "}
2224
<a href="https://www.iteratec.de/impressum/">Impressum</a>
2325
</li>
2426
<li className="copyright">
25-
©
26-
{' '}
27-
{new Date().getFullYear()}
28-
{' '}
29-
{props.data.site.siteMetadata.company}
27+
© {new Date().getFullYear()}{" "}
28+
{props.data.site.siteMetadata.company}
3029
</li>
3130
</ul>
3231
</div>

src/pages/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ const Home = (props) => {
5858
<div className="feature-list" >
5959
<ul className="pro">
6060
<li> <img src={approved}/>
61-
Teams with a medium to advanced security program</li>
61+
Teams with an already medium to advanced security program</li>
6262
<li> <img src={approved} />
6363
Multi-team setups</li>
6464
<li> <img src={approved} />
@@ -67,7 +67,7 @@ const Home = (props) => {
6767

6868
<ul className="con">
6969
<li> <img src={notApproved}/>
70-
Teams just starting with a security program</li>
70+
As the first security steps</li>
7171
<li><img src={notApproved} />
7272
Teams with separate dev, ops and security teams</li>
7373
</ul >

src/scss/components/_feature.scss

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,10 @@
5151
padding: 0;
5252
float: left;
5353
max-width: 45%;
54+
@include media-breakpoint-up(sm) {
55+
max-width: 90%;
56+
float: unset;
57+
}
5458
li {
5559
img {
5660
width: 40px;
@@ -74,6 +78,10 @@
7478
padding: 0;
7579
max-width: 40%;
7680
float: right;
81+
@include media-breakpoint-up(sm) {
82+
max-width: 90%;
83+
float: unset;
84+
}
7785
max-width: 45%;
7886
li {
7987
img {

src/scss/components/_main-menu-mobile.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
$color-main: $primary;
1+
$color-main: $iteragenta;
22
$color-active: #fff;
33
$color-link: #fff;
44

0 commit comments

Comments
 (0)