CSS fixes for template themes

This commit is contained in:
Martin McKeaveney 2021-10-07 11:48:38 +01:00
parent 910477a765
commit ddcced8c81
1 changed files with 5 additions and 2 deletions

View File

@ -33,7 +33,10 @@
</div> </div>
{/each} {/each}
<div class="template start-from-scratch" on:click={() => onSelect(null)}> <div class="template start-from-scratch" on:click={() => onSelect(null)}>
<div class="background-icon" style={`background: var(--background);`}> <div
class="background-icon"
style={`background: rgb(50, 50, 50); color: white;`}
>
<Icon name="Add" /> <Icon name="Add" />
</div> </div>
<Heading size="XS">Start from scratch</Heading> <Heading size="XS">Start from scratch</Heading>
@ -74,7 +77,7 @@
align-items: center; align-items: center;
cursor: pointer; cursor: pointer;
border-radius: 4px; border-radius: 4px;
background: #1a1a1a; background: var(--background-alt);
padding: 8px 16px; padding: 8px 16px;
} }