Skip to content

Instantly share code, notes, and snippets.

@jakeoid
Created December 30, 2016 03:06
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save jakeoid/f730f0b3e393a476688d94ad22c3d4cf to your computer and use it in GitHub Desktop.
Save jakeoid/f730f0b3e393a476688d94ad22c3d4cf to your computer and use it in GitHub Desktop.
Removes the ability for users to be able to use White Theme.
.app.theme-light {
visibility: hidden;
white-space: pre;
}
.app.theme-light:before {
content: 'Woops! White Theme isnt supported.\A\APress [CTRL] + [,] to access your settings.';
visibility: visible !important;
color: #FFFFFF;
text-transform: uppercase;
font-size: 26pt;
width: 100%;
text-align: center;
font-weight: bold;
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
}
@jakeoid
Copy link
Author

jakeoid commented Dec 30, 2016

Originally made by @SpoopySaitama, I improved his code 👀

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment