Skip to content

Instantly share code, notes, and snippets.

@fpapado
Created July 23, 2018 09:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fpapado/117654299668cf57dcf86cff9d7e9db7 to your computer and use it in GitHub Desktop.
Save fpapado/117654299668cf57dcf86cff9d7e9db7 to your computer and use it in GitHub Desktop.
SpeedCurve split panels
(function() {
'use strict';
// Your code here...
function addGlobalStyle(css) {
var head, style;
head = document.getElementsByTagName('head')[0];
if (!head) { return; }
style = document.createElement('style');
style.type = 'text/css';
style.innerHTML = css;
head.appendChild(style);
}
addGlobalStyle('.favorite-charts { display: flex; flex-wrap: wrap; } .chartwrapper { width: 50% }');
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment