mirror of
https://github.com/a-nyx/maputnik-with-pmtiles.git
synced 2025-01-07 12:35:22 +01:00
35 lines
601 B
SCSS
35 lines
601 B
SCSS
|
.maputnik-base {
|
||
|
display: inline-block;
|
||
|
box-sizing: border-box;
|
||
|
font-size: $font-size-6;
|
||
|
line-height: 2;
|
||
|
padding-left: $margin-2;
|
||
|
padding-right: $margin-2;
|
||
|
}
|
||
|
.maputnik-input {
|
||
|
@extend .maputnik-base;
|
||
|
border: none;
|
||
|
background-color: $color-gray;
|
||
|
color: $color-lowgray;
|
||
|
}
|
||
|
.maputnik-string {
|
||
|
@extend .maputnik-input;
|
||
|
width: 50%;
|
||
|
}
|
||
|
.maputnik-number {
|
||
|
@extend .maputnik-input;
|
||
|
}
|
||
|
|
||
|
//COLOR PICKER
|
||
|
.maputnik-color {
|
||
|
@extend .maputnik-input;
|
||
|
}
|
||
|
.maputnik-color-wrapper {
|
||
|
position: relative;
|
||
|
display: inline;
|
||
|
}
|
||
|
.maputnik-color-picker-offset {
|
||
|
}
|
||
|
.maputnik-color-picker-overlay {
|
||
|
}
|