This file contains hidden or 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
<div class="p-1 bg-gray-500 text-white block sm:hidden">Current breakpoint: NONE</div> | |
<div class="p-1 bg-amber-600 text-white hidden sm:block md:hidden">Current breakpoint: SM</div> | |
<div class="p-1 bg-red-600 text-white hidden md:block lg:hidden">Current breakpoint: MD</div> | |
<div class="p-1 bg-green-600 text-white hidden lg:block xl:hidden">Current breakpoint: LG</div> | |
<div class="p-1 bg-blue-600 text-white hidden xl:block 2xl:hidden">Current breakpoint: XL</div> | |
<div class="p-1 bg-black text-white hidden 2xl:block">Current breakpoint: 2XL</div> |
This file contains hidden or 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 mbank unlifting | |
// @description Przywraca wygląd strony transakcyjnej mbanku z przed liftingu | |
// @version 0.1 | |
// @grant none | |
// @author mardr | |
// @include https://online.mbank.pl/* | |
// ==/UserScript== | |
document.documentElement.classList.remove('lifting'); |
This file contains hidden or 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
@import "retina.less"; | |
.body-text { | |
.retina-font-weight(); | |
} |