Skip to content

Commit

Permalink
Added overflow:hidden to container graph area (#82)
Browse files Browse the repository at this point in the history
  • Loading branch information
svipatov authored and danielcaldas committed Jul 1, 2018
1 parent 21bf569 commit b26e839
Showing 1 changed file with 15 additions and 12 deletions.
27 changes: 15 additions & 12 deletions sandbox/styles.css
Original file line number Diff line number Diff line change
@@ -1,17 +1,20 @@
* {box-sizing: border-box;}
* {
box-sizing: border-box;
}
.container {
margin: 4px;
overflow: hidden;
position: fixed;
margin: 4px;
overflow: hidden;
position: fixed;
}

.container > div {
padding: 1em;
}.container {
display: grid;
width: 100%;
grid-template-columns: 450px 1fr;
grid-auto-rows: minmax(100px, auto);
padding: 1em;
}
.container {
display: grid;
width: 100%;
grid-template-columns: 450px 1fr;
grid-auto-rows: minmax(100px, auto);
}

.container__graph {
Expand All @@ -29,12 +32,12 @@
}

.container__graph-area {
max-width: 800px;
max-height: 400px;
border: 1px dotted gray;
margin-left: 20px;
margin-top: 4px;
z-index: 1;
overflow: hidden;
}

.container__graph-data {
Expand Down Expand Up @@ -88,5 +91,5 @@
.invisible-button {
background: transparent;
border: none !important;
font-size:0;
font-size: 0;
}

0 comments on commit b26e839

Please sign in to comment.