From 96c52a6d58e10f3fae2a69ab00ed219e9f2d0059 Mon Sep 17 00:00:00 2001 From: JeremyJamesL Date: Wed, 4 Dec 2024 09:09:11 +0000 Subject: first commit --- src/index.css | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 src/index.css (limited to 'src/index.css') diff --git a/src/index.css b/src/index.css new file mode 100644 index 0000000..c5ad895 --- /dev/null +++ b/src/index.css @@ -0,0 +1,38 @@ +@tailwind base; +@tailwind components; +@tailwind utilities; + +/* GENERAL +// ------------------------- */ +* { + font-family: "Helvetica Neue", Helvetica, sans-serif; +} + +#map { + height: 100%; + height: 800px; + width: 100%; +} + +.gm-style-mtc-bbw { + display: none; +} + +html, +body { + height: 100%; + margin: 0; + padding: 0; +} + +body { + color: #646c78; + background-color: #222e3e; +} + +.container { + max-width: 1200px; + margin: 0 auto; + padding-left: 15px; + padding-right: 15px; +} -- cgit v1.2.3