diff options
Diffstat (limited to 'src/index.css')
-rw-r--r-- | src/index.css | 38 |
1 files changed, 38 insertions, 0 deletions
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; +} |