💄 Re: #200 - Icon image assets max height

This commit is contained in:
Alicia Sykes
2021-09-04 14:02:16 +01:00
parent 51a45f2cc2
commit e65d4479ee
2 changed files with 14 additions and 6 deletions

View File

@@ -167,15 +167,23 @@ export default {
<style lang="scss">
/* Default Image Icon */
.tile-icon {
width: 2rem;
// filter: var(--item-icon-transform);
min-width: 1rem;
max-width: 2rem;
min-height: 1rem;
max-height: 2rem;
object-fit: cover;
filter: var(--item-icon-transform);
border-radius: var(--curve-factor);
&.broken { display: none; }
&.small {
width: 1.5rem;
max-width: 1.5rem;
max-height: 1.5rem;
}
&.large {
width: 3rem;
max-width: 3rem;
max-height: 3rem;
}
&.broken {
display: none;
}
}
/* Font-Awesome and Material Design Icons */