Created
October 18, 2018 03:11
-
-
Save saschanaz/ce4c12d0290e5ffa708946180dca0085 to your computer and use it in GitHub Desktop.
Pawoo flexbox workaround
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==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