Settings, Management: Better uploaded profile picture quality

This commit is contained in:
Alexander Zinchuk 2022-01-21 17:29:38 +01:00
parent bfc958484c
commit e995a514de
2 changed files with 2 additions and 1 deletions

View File

@ -49,7 +49,7 @@
.cr-viewport {
border: none;
box-shadow: 0 0 2000px 2000px rgba(white, 0.5);
box-shadow: 0 0 2000px 2000px rgba(#7f7f7f, 0.5);
}
.cr-slider {

View File

@ -18,6 +18,7 @@ const cropperResultOptions: Croppie.ResultOptions & { type: 'blob' } = {
quality: 1,
format: 'jpeg',
circle: false,
size: { width: 1024, height: 1024 },
};
type ICroppie = typeof import('croppie');