New material theme, additional fonts, more complete theme coverage, and bug fixes

This commit is contained in:
Alicia Sykes
2021-06-01 22:44:59 +01:00
parent b60b8db884
commit 9cf720e711
16 changed files with 248 additions and 64 deletions
+6 -1
View File
@@ -12,6 +12,7 @@
<div class="tile-title" :id="`tile-${id}`" >
<span class="text">{{ title }}</span>
<div class="overflow-dots">...</div>
<p class="description">{{ description }}</p>
</div>
<!-- Item Icon -->
<Icon :icon="icon" :url="url" :size="itemSize" :color="color" v-bind:style="customStyles" />
@@ -205,7 +206,7 @@ export default {
}
.tile-title {
height: fit-content;
min-height: 1rem;
min-height: 1.2rem;
span.text {
text-align: left;
padding-left: 10%;
@@ -228,6 +229,10 @@ export default {
&.size-large {
height: 100px;
}
p.description {
display: none;
}
}
</style>