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

Commit 4ce3758

Browse files
author
dpatanin
committed
change highlight color and minor adjustments
1 parent 7542770 commit 4ce3758

4 files changed

Lines changed: 20 additions & 20 deletions

File tree

src/pages/index.js

Lines changed: 14 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
import React from 'react';
2-
import { withPrefix } from 'gatsby';
3-
import Helmet from 'react-helmet';
4-
import SEO from '../components/SEO';
5-
import Layout from '../components/Layout';
6-
import approved from '../images/approved.svg';
7-
import notApproved from '../images/not approved.svg';
1+
import React from "react";
2+
import { withPrefix } from "gatsby";
3+
import Helmet from "react-helmet";
4+
import SEO from "../components/SEO";
5+
import Layout from "../components/Layout";
6+
import approved from "../images/approved.svg";
7+
import notApproved from "../images/not approved.svg";
88

9-
import features from '../data/features.json';
9+
import features from "../data/features.json";
1010

1111
const Home = () => {
1212
return (
@@ -58,10 +58,12 @@ const Home = () => {
5858
</div>
5959

6060
<div className="container pt-3 pb-5 pb-md-7">
61-
<div className="col-12">
62-
<h2 className="title-3 text-dark mb-2">
63-
When is the secureCodeBox right for your team?
64-
</h2>
61+
<div className="row justify-content-center">
62+
<div className="col-12">
63+
<h2 className="title-3 text-dark mb-2">
64+
When is the secureCodeBox right for your team?
65+
</h2>
66+
</div>
6567
</div>
6668
<div className="feature">
6769
<h2 className="feature-title"></h2>

src/scss/_bootstrap-variables.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ $white: #ffffff;
2020
$black: #000000;
2121
$primary: #1c3ed3;
2222
$iteragenta: #a9218e;
23-
$iteragentaLight: rgb(170, 77, 151);
23+
$highlight: #7c00ce57;
2424
$secureCodeBlue: #3296dc;
2525
$secondary: #414156;
2626

src/scss/components/_feature.scss

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
6262
padding-right: 5px;
6363
}
6464
font-size: 1.1rem;
65-
color: rgb(87, 87, 87);
65+
color: $secondary;
6666
margin: 25px;
6767
line-height: 1.3;
6868
text-align: left;
@@ -77,20 +77,19 @@
7777
-moz-columns: 1;
7878
margin: 0;
7979
padding: 0;
80-
max-width: 40%;
80+
max-width: 45%;
8181
float: right;
8282
@include media-breakpoint-down(sm) {
8383
max-width: 90%;
8484
float: unset;
8585
}
86-
max-width: 45%;
8786
li {
8887
img {
8988
width: 40px;
9089
padding-right: 5px;
9190
}
9291
font-size: 1.1rem;
93-
color: rgb(87, 87, 87);
92+
color: $secondary;
9493
margin: 25px;
9594
line-height: 1.3;
9695
text-align: left;
@@ -106,8 +105,7 @@
106105
&:hover {
107106
margin-top: -1px;
108107
margin-bottom: 1px;
109-
box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.1);
110-
border-color: $iteragenta;
108+
box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
111109
text-decoration: none;
112110
}
113111
}

src/scss/components/_main-menu.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
padding: 10px 14px 10px 14px;
3232
text-decoration: none;
3333
&:hover {
34-
background: $iteragenta;
34+
background: $highlight;
3535
color: #fff;
3636
text-decoration: none;
3737
}

0 commit comments

Comments
 (0)