Skip to content

Commit

Permalink
Merge pull request #17 from jwenger100/consulting-site-updates
Browse files Browse the repository at this point in the history
Spacing updates
  • Loading branch information
kylejoe authored Mar 4, 2024
2 parents 00e5d5d + eddd121 commit cf0a992
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 3 deletions.
1 change: 1 addition & 0 deletions src/app/components/About.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ export function About() {
className={classes.title}
c={"var(--cc-text-color)"}
ta={"center"}
mt={"var(--mantine-spacing-xs)"}
>
Who We Are{" "}
</Title>
Expand Down
13 changes: 12 additions & 1 deletion src/app/components/Projects.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,10 @@ import {
rem,
} from "@mantine/core";
import { useMediaQuery } from "@mantine/hooks";

import {
IconArrowsDiagonal,
IconArrowsDiagonalMinimize,
} from "@tabler/icons-react";
import Autoplay from "embla-carousel-autoplay";
import { Carousel, Embla, useAnimationOffsetEffect } from "@mantine/carousel";
import "@mantine/carousel/styles.css";
Expand Down Expand Up @@ -376,6 +379,10 @@ const ProjectsCard = ({ article }: { article: any }) => {
className={classes.closeButton}
>
Close
<IconArrowsDiagonalMinimize
size={14}
style={{ marginLeft: "8px", marginBottom: "3px" }}
/>
</Button>
</Modal>

Expand Down Expand Up @@ -412,6 +419,10 @@ const ProjectsCard = ({ article }: { article: any }) => {
className={classes.viewProjectbutton}
>
View Project
<IconArrowsDiagonal
size={14}
style={{ marginLeft: "8px", marginBottom: "3px" }}
/>
</Button>
</Box>
</Card>
Expand Down
4 changes: 2 additions & 2 deletions src/app/components/Testimonials.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -50,13 +50,13 @@
}

.testimonialCardAnimation {
@media (max-width: $mantine-breakpoint-sm) {
@media (max-width: $mantine-breakpoint-lg) {
margin-top: 45px;
}
}

.testimonialCardAnimation:first-of-type {
@media (max-width: $mantine-breakpoint-sm) {
@media (max-width: $mantine-breakpoint-lg) {
margin-top: 0;
}
}

0 comments on commit cf0a992

Please sign in to comment.