Skip to content

Commit

Permalink
fix: No background image (splash) on coins
Browse files Browse the repository at this point in the history
  • Loading branch information
TEParsons committed Mar 31, 2024
1 parent 6cc4fa4 commit 198fb32
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions base/torillic.css
Original file line number Diff line number Diff line change
Expand Up @@ -461,29 +461,34 @@ img[src="copper"], img[src="c"], /* generic HTML */
.md-image[data-src="copper"] /* typora */
{
display: inline;
background-image: none;
content:url("torillic/copper.png");
}
img[src="silver"], img[src="s"], /* generic HTML */
.md-image[data-src="silver"] /* typora */
{
display: inline;
background-image: none;
content:url("torillic/silver.png");
}
img[src="electrum"], img[src="e"], /* generic HTML */
.md-image[data-src="electrum"] /* typora */
{
display: inline;
background-image: none;
content:url("torillic/electrum.png");
}
img[src="gold"], img[src="g"], /* generic HTML */
.md-image[data-src="gold"] /* typora */
{
display: inline;
background-image: none;
content:url("torillic/gold.png");
}
img[src="platinum"], img[src="p"], /* generic HTML */
.md-image[data-src="platinum"] /* typora */
{
display: inline;
background-image: none;
content:url("torillic/platinum.png");
}

0 comments on commit 198fb32

Please sign in to comment.