Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added overflow:hidden to container graph area #82

Merged
merged 1 commit into from
Jul 1, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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;
}