Merge remote-tracking branch 'upstream/master' into feature/accessibility-list-reorder

Conflicts:
	src/components/App.jsx
This commit is contained in:
orangemug
2018-06-03 09:22:02 +01:00
6 changed files with 125 additions and 2 deletions

View File

@@ -136,6 +136,7 @@
font-size: $font-size-5;
color: $color-lowgray;
background-color: transparent;
width: 100%;
@include flex-row;
}

View File

@@ -16,6 +16,8 @@
background-color: $color-black;
padding: $margin-2;
height: $toolbar-height;
position: relative;
overflow: hidden;
h1 {
display: inline;
@@ -80,3 +82,23 @@
flex: 1;
overflow-y: auto;
}
.maputnik-toolbar-skip {
position: absolute;
overflow: hidden;
width: 0px;
height: 100%;
text-align: center;
display: block;
background-color: $color-black;
z-index: 999;
line-height: 40px;
left: 0;
top: 0;
&:active,
&:focus {
width: 100%;
}
}