From 06a8588666b544b3faf1c16928b93f4c3d9799f3 Mon Sep 17 00:00:00 2001 From: Alex Garel Date: Fri, 13 Dec 2024 11:54:48 +0100 Subject: [PATCH] feat: make links visible on home-page and texts Link are not currently visible on the home page. Make them visible in typography texts. --- src/index.css | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/src/index.css b/src/index.css index 9bfac29..20f64f2 100644 --- a/src/index.css +++ b/src/index.css @@ -27,4 +27,11 @@ a { justify-content: center; align-items: center; gap: 8rem; -} \ No newline at end of file +} + +/* makes link visible in content */ +.MuiTypography-root a { + color: rgb(52, 17, 0); + text-decoration: underline; +} +