mirror of
https://github.com/a-nyx/maputnik-with-pmtiles.git
synced 2025-01-03 22:51:45 +01:00
58 lines
994 B
SCSS
58 lines
994 B
SCSS
$color-black: #1c1f24;
|
|
$color-gray: #26282e;
|
|
$color-midgray: #36383e;
|
|
$color-lowgray: #8e8e8e;
|
|
$color-white: #f0f0f0;
|
|
$color-red: #cf4a4a;
|
|
$color-green: #53b972;
|
|
$margin-1: 3px;
|
|
$margin-2: 5px;
|
|
$margin-3: 10px;
|
|
$margin-4: 30px;
|
|
$margin-5: 40px;
|
|
$font-size-1: 24px;
|
|
$font-size-2: 20px;
|
|
$font-size-3: 18px;
|
|
$font-size-4: 16px;
|
|
$font-size-5: 14px;
|
|
$font-size-6: 12px;
|
|
$font-family: Roboto, sans-serif;
|
|
|
|
$toolbar-height: 40px;
|
|
$toolbar-offset: 0;
|
|
|
|
@import 'mixins';
|
|
@import 'reset';
|
|
@import 'base';
|
|
@import 'components';
|
|
@import 'scrollbar';
|
|
@import 'picker';
|
|
@import 'toolbar';
|
|
@import 'modal';
|
|
@import 'export';
|
|
@import 'layout';
|
|
@import 'layer';
|
|
@import 'input';
|
|
@import 'filtereditor';
|
|
@import 'zoomproperty';
|
|
@import 'popup';
|
|
@import 'map';
|
|
@import 'react-collapse';
|
|
@import 'react-codemirror';
|
|
|
|
/**
|
|
* Hacks for webdriverio isVisibleWithinViewport
|
|
*/
|
|
#app {
|
|
height: 100vh;
|
|
}
|
|
|
|
.maputnik-layout {
|
|
height: 100vh;
|
|
}
|
|
|
|
.react-icons {
|
|
vertical-align: middle;
|
|
width: 14px;
|
|
height: 14px;
|
|
}
|