mirror of
https://github.com/immich-app/immich
synced 2025-11-14 17:36:12 +00:00
fix(web): responsive design when selecting assets in an album (#11169)
fix: responsive design when selecting assets in an album
This commit is contained in:
parent
4b2bc8e4ce
commit
86b3e3ee13
2 changed files with 6 additions and 5 deletions
|
|
@ -31,8 +31,9 @@
|
|||
</script>
|
||||
|
||||
<ControlAppBar on:close={clearSelect} backIcon={mdiClose} tailwindClasses="bg-white shadow-md">
|
||||
<p class="font-medium text-immich-primary dark:text-immich-dark-primary" slot="leading">
|
||||
{$t('selected_count', { values: { count: assets.size } })}
|
||||
</p>
|
||||
<div class="font-medium text-immich-primary dark:text-immich-dark-primary" slot="leading">
|
||||
<p class="block sm:hidden">{assets.size}</p>
|
||||
<p class="hidden sm:block">{$t('selected_count', { values: { count: assets.size } })}</p>
|
||||
</div>
|
||||
<slot slot="trailing" />
|
||||
</ControlAppBar>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue