Skip to content

Instantly share code, notes, and snippets.

@saschanaz
Created October 18, 2018 03:11
Show Gist options
  • Save saschanaz/ce4c12d0290e5ffa708946180dca0085 to your computer and use it in GitHub Desktop.
Save saschanaz/ce4c12d0290e5ffa708946180dca0085 to your computer and use it in GitHub Desktop.
Pawoo flexbox workaround
// ==UserScript==
// @name Pawoo flexbox workaround for Edge 18
// @namespace http://saschanaz.github.io/
// @version 0.1
// @description Workaround Edge 18 flexbox bug
// @author Kagami Sascha Rosylight
// @match https://pawoo.net/web/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
const style = document.createElement("style");
style.textContent = ".column { display: grid !important; grid-template-rows: auto 1fr; }";
document.head.appendChild(style);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment