Skip to content

Commit

Permalink
Fix: don't wrap toolbar items
Browse files Browse the repository at this point in the history
See dmx-platform/dmx-platform#442
  • Loading branch information
jri committed Apr 9, 2021
1 parent 3682832 commit dbd062a
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/components/dmx-toolbar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ export default {
<style>
.dmx-toolbar {
display: flex; /* arrange children as a row */
align-items: flex-start;
position: absolute; /* share space with Cytoscape canvas */
z-index: 1001; /* render on top of Leaflet container */
box-sizing: border-box;
Expand All @@ -34,9 +33,9 @@ export default {
pointer-events: none; /* make toolbar click-through */
}
.dmx-toolbar > div {
.dmx-toolbar > div,
.dmx-toolbar > div > div {
display: flex;
align-items: baseline;
}
.dmx-toolbar > div.right {
Expand Down

0 comments on commit dbd062a

Please sign in to comment.