make indentation consistent

This commit is contained in:
j3d1 2023-11-27 01:14:52 +01:00
parent d52575aa42
commit 9f63414ba2
27 changed files with 858 additions and 804 deletions

View file

@ -19,18 +19,18 @@ import Modal from '@/components/Modal';
import config from '../config';
export default {
name: 'Lightbox',
components: { Modal },
props: ['file'],
data: ()=>({
baseUrl: config.service.url,
}),
name: 'Lightbox',
components: {Modal},
props: ['file'],
data: () => ({
baseUrl: config.service.url,
}),
};
</script>
<style>
#lightbox-image {
#lightbox-image {
max-height: 75vh;
object-fit: contain;
}
}
</style>