Skip to content

Commit 3209720

Browse files
committed
fix: run check format
Signed-off-by: Amr ElSayyad <20210190+AmrElsayyad@users.noreply.github.com>
1 parent 118e57f commit 3209720

File tree

3 files changed

+12
-7
lines changed

3 files changed

+12
-7
lines changed

src/containers/profile/Profile.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ import Contact from "../contact/Contact";
44
import Loading from "../loading/Loading";
55

66
const renderLoader = () => <Loading />;
7-
const GithubProfileCard = lazy(() =>
8-
import("../../components/githubProfileCard/GithubProfileCard")
7+
const GithubProfileCard = lazy(
8+
() => import("../../components/githubProfileCard/GithubProfileCard")
99
);
1010
export default function Profile() {
1111
const [prof, setrepo] = useState([]);

src/containers/projects/Projects.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ import {openSource, socialMediaLinks} from "../../portfolio";
55
import StyleContext from "../../contexts/StyleContext";
66
import Loading from "../../containers/loading/Loading";
77
export default function Projects() {
8-
const GithubRepoCard = lazy(() =>
9-
import("../../components/githubRepoCard/GithubRepoCard")
8+
const GithubRepoCard = lazy(
9+
() => import("../../components/githubRepoCard/GithubRepoCard")
1010
);
1111
const FailedLoading = () => null;
1212
const renderLoader = () => <Loading />;

src/index.css

+8-3
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,15 @@
22
font-family: "Agustina Regular";
33
font-style: normal;
44
font-weight: normal;
5-
src: local("Agustina Regular"),
5+
src:
6+
local("Agustina Regular"),
67
url("./assets/fonts/Agustina.woff") format("woff");
78
font-display: swap;
89
}
910
@font-face {
1011
font-family: "Montserrat";
11-
src: local("Montserrat"),
12+
src:
13+
local("Montserrat"),
1214
url("./assets/fonts/Montserrat-Regular.ttf") format("woff");
1315
font-display: swap;
1416
}
@@ -22,7 +24,10 @@ body {
2224
}
2325
body {
2426
margin: 0;
25-
font: 19px / 23px Montserrat, "Montserrat", sans-serif;
27+
font:
28+
19px / 23px Montserrat,
29+
"Montserrat",
30+
sans-serif;
2631
-webkit-font-smoothing: antialiased;
2732
-moz-osx-font-smoothing: grayscale;
2833
}

0 commit comments

Comments
 (0)