mirror of
https://github.com/driftywinds/driftywinds.github.io.git
synced 2025-12-19 11:03:32 +00:00
Fix app-header tint color formatting
This commit is contained in:
@@ -40,11 +40,11 @@ const appHeaderHTML = app => app ? `
|
|||||||
<p class="subtitle">${app.developerName}</p>
|
<p class="subtitle">${app.developerName}</p>
|
||||||
</div>
|
</div>
|
||||||
<a href="app.html?source=${sourceURL}&id=${app.bundleIdentifier}">
|
<a href="app.html?source=${sourceURL}&id=${app.bundleIdentifier}">
|
||||||
<button class="uibutton" style="background-color: #${app.tintColor};">View</button>
|
<button class="uibutton" style="background-color: #${app.tintColor.replaceAll("#", "")};">View</button>
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="background" style="background-color: #${app.tintColor};"></div>
|
<div class="background" style="background-color: #${app.tintColor.replaceAll("#", "")};"></div>
|
||||||
</div>
|
</div>
|
||||||
</div>` : undefined;
|
</div>` : undefined;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user