mirror of
https://github.com/coracle-social/flotilla.git
synced 2025-12-11 11:27:03 +00:00
Fix skinny profile circles
This commit is contained in:
@@ -1,5 +1,9 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
# Current
|
||||||
|
|
||||||
|
* Fix skinny profile images
|
||||||
|
|
||||||
# 1.6.0
|
# 1.6.0
|
||||||
|
|
||||||
* Switch back to indexeddb to fix memory and performance
|
* Switch back to indexeddb to fix memory and performance
|
||||||
|
|||||||
@@ -7,7 +7,7 @@ android {
|
|||||||
applicationId "social.flotilla"
|
applicationId "social.flotilla"
|
||||||
minSdk rootProject.ext.minSdkVersion
|
minSdk rootProject.ext.minSdkVersion
|
||||||
targetSdk rootProject.ext.targetSdkVersion
|
targetSdk rootProject.ext.targetSdkVersion
|
||||||
versionCode 35
|
versionCode 36
|
||||||
versionName "1.6.0"
|
versionName "1.6.0"
|
||||||
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
||||||
aaptOptions {
|
aaptOptions {
|
||||||
|
|||||||
@@ -14,5 +14,8 @@
|
|||||||
{#if src.includes("image/svg") || src.endsWith(".svg")}
|
{#if src.includes("image/svg") || src.endsWith(".svg")}
|
||||||
<Icon icon={src} {size} class={props.class} />
|
<Icon icon={src} {size} class={props.class} />
|
||||||
{:else}
|
{:else}
|
||||||
<img {src} {alt} class="h-{size} w-{size} aspect-square object-cover {props.class}" />
|
<img
|
||||||
|
{src}
|
||||||
|
{alt}
|
||||||
|
class="h-{size} w-{size} min-w-{size} min-h-{size} aspect-square object-cover {props.class}" />
|
||||||
{/if}
|
{/if}
|
||||||
|
|||||||
Reference in New Issue
Block a user