From a278b595b34cbc51ac53968b9a6e7e1a89efe48e Mon Sep 17 00:00:00 2001 From: Rajeeva Lochan Musunuri <2278936+omicsnut@users.noreply.github.com> Date: Mon, 2 Oct 2023 16:37:51 -0400 Subject: [PATCH] chore: Add back index.module.css --- website/src/pages/index.module.css | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 website/src/pages/index.module.css diff --git a/website/src/pages/index.module.css b/website/src/pages/index.module.css new file mode 100644 index 000000000..367eb3ea1 --- /dev/null +++ b/website/src/pages/index.module.css @@ -0,0 +1,28 @@ +/** + * CSS files with the .module.css suffix will be treated as CSS modules + * and scoped locally. + */ + +.heroBanner { + padding: 4rem 0; + text-align: center; + position: relative; + overflow: hidden; +} + +@media screen and (max-width: 996px) { + .heroBanner { + padding: 2rem; + } +} + +.buttons { + display: flex; + align-items: center; + justify-content: center; + margin: 10px 0 0; +} + +.buttons > a { + margin: 0 5px; +}