Skip to content

Commit c57ff46

Browse files
author
Hannah Dunsmore
committed
added globalStyle sheet
1 parent 0b375d1 commit c57ff46

File tree

2 files changed

+19
-4
lines changed

2 files changed

+19
-4
lines changed

src/Components/MissionManifest/MissionManifest.scss

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
11
@use "../../App.scss" as AppCSS;
2-
@import url('https://fonts.googleapis.com/css2?family=Martian+Mono:wght@100..800&display=swap');
2+
@import "../../Styles/GlobalStyles.scss";
33

44
body{
5-
background-color: #062356;
5+
background-color: $blueBackground;
66
}
77
#mission-manifest-container {
8-
font-family: "Martian Mono", monospace;
8+
font-family: $MartianMono;
99
width: 40vw;
1010
margin: 40px auto;
11-
background-color: #E4965B;
11+
background-color: $orangeBackground;
12+
color: black;
1213
h2 {
1314
font-weight: 900;
1415
}

src/Styles/GlobalStyles.scss

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
2+
@import url('https://fonts.googleapis.com/css2?family=Martian+Mono:wght@100..800&display=swap');
3+
@import url('https://fonts.googleapis.com/css2?family=Martian+Mono:wght@100..800&family=Public+Sans:ital,wght@0,100..900;1,100..900&display=swap');
4+
5+
$orangeBackground: #E4965B;
6+
$blueBackground: #062356;
7+
$greyBackground: #878888;
8+
9+
$MartianMono: "Martian Mono", monospace;
10+
$PublicSans: "Public Sans", sans-serif;
11+
$whiteFontColor: #FFFFF2;
12+
$boldFontWeight: 900;
13+
14+
$buttonColor: #878888;

0 commit comments

Comments
 (0)