From b57e48a828dfbf7af48f95e52f2ead44e36273c9 Mon Sep 17 00:00:00 2001 From: Keshav K Date: Thu, 11 Jan 2024 03:51:03 -0800 Subject: [PATCH] match the solution font with the desired image --- flex/02-flex-header/solution/solution.css | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/flex/02-flex-header/solution/solution.css b/flex/02-flex-header/solution/solution.css index 884e862..2d7c25f 100644 --- a/flex/02-flex-header/solution/solution.css +++ b/flex/02-flex-header/solution/solution.css @@ -1,3 +1,5 @@ +@import url('https://fonts.googleapis.com/css2?family=Courier+Prime:wght@400;700&display=swap'); + .header { font-family: monospace; background: papayawhip; @@ -27,6 +29,8 @@ a { /* SOLUTION */ .header { + /* Feel free to not worry too heavily on matching the font */ + font-family: 'Courier Prime', monospace; padding: 8px; display: flex; align-items: center; @@ -38,4 +42,8 @@ ul { margin: 0; padding: 0; gap: 8px; +} + +a { + font-weight: 400; } \ No newline at end of file