I would like to reduce the size of the size of the preview image.
1 Like
Hey there, @David_Crockett
Please add this code to the Custom CSS field on the Appearance tab of your widget’s settings and let me know if it helped:
.global-styles,
:root {
--eas-image-size: 100px;
}
.eapp-file-embed-grid-item {
width: auto !important;
min-width: var(--eas-image-size);
flex: 0 0 var(--eas-image-size);
}
.eapp-file-embed-icon-image {
max-width: var(--eas-image-size);
max-height: var(--eas-image-size);
}