Skip to content
Snippets Groups Projects
index.css 819 B
@tailwind base;
@tailwind components;
@tailwind utilities;

:root {
  --fabcity-red: #ee2f45;
  --fabcity-green: #08aa64;
  --fabcity-blue: #19459c;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans',
    'Droid Sans', 'Helvetica Neue', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

code {
  font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New', monospace;
}

.marker {
  color: var(--fabcity-red);
}

.sidebar {
  flex: 3;
  overflow-y: scroll;
  max-height: 50vh;
}

.leaflet-control-container {
  display: none;
}

@screen md {
  .sidebar {
    flex: 1;
    min-width: 250px;
    max-height: initial;
  }

  .leaflet-control-container {
    display: initial;
  }
}