Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/_globalColor.scss
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ $topButtonHover: #000;
// text colors light theme
$titleColor: #000000;
$textColor: #000000;
$subTitle: #868e96;
$subTitle: #989da1;
$cardSubtitle: #666666;
$talkCardSubTitle: #7f8287;
$blogCardTitleColor: #262626;
Expand Down
3 changes: 2 additions & 1 deletion src/components/blogCard/BlogCard.scss
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

.blog-container {
border-radius: 10px;
margin-top: 30px;
color: $blogCardContainerColor;
background-color: $lightBackground1;
box-shadow: 0 0 36px $lightBoxShadow;
Expand Down Expand Up @@ -145,5 +146,5 @@
}
}
.blog-card-shadow {
box-shadow: 1px 0px 20px $darkBoxShadow2;
box-shadow: 1px 5px 10px $darkBoxShadow2;
}
4 changes: 3 additions & 1 deletion src/components/header/Header.scss
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,13 @@

.dark-menu li a:hover {
background-color: $buttonColor !important;
border-radius: 30px;
}

.header {
background-color: $lightBackground1;
max-width: 100%;
padding: 15px 20px;
padding: 10px 5px;
margin: 0px auto;
}

Expand All @@ -48,6 +49,7 @@
.header li a:hover,
.header .menu-btn:hover {
background-color: $headerHoverBG;
border-radius: 30px;
}

.header .logo {
Expand Down
2 changes: 2 additions & 0 deletions src/containers/contact/Contact.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ export default function Contact() {
isDark ? "dark-mode contact-text-div" : "contact-text-div"
}
>
Phone Number:{" "}
{contactInfo.number && (
<>
<a
Expand All @@ -41,6 +42,7 @@ export default function Contact() {
<br />
</>
)}
Email:{" "}
<a
className="contact-detail-email"
href={"mailto:" + contactInfo.email_address}
Expand Down
8 changes: 3 additions & 5 deletions src/containers/contact/Contact.scss
Original file line number Diff line number Diff line change
Expand Up @@ -19,17 +19,15 @@

.contact-detail,
.contact-detail-email {
margin-top: 20px;
font-size: 40px;
font-weight: 400;
font-size: 20px;
font-weight: 200;
color: $subTitle;
text-decoration: none;
}

.contact-detail:hover,
.contact-detail-email:hover {
color: $textColor;
text-shadow: 2px 1px 2px $contactDetailHoverTS;
color: $subTitle;
transition: all 0.3s;
}

Expand Down