Skip to content

Commit

Permalink
Updated sizing
Browse files Browse the repository at this point in the history
  • Loading branch information
asriniv4 committed Jan 23, 2023
1 parent a147df0 commit eaed029
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions netlify/functions/get-thumbnail-url.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ exports.handler = async function (event, context) {
.from('case-thumbnails')
.createSignedUrl(thumbnailName, 60000, {
transform: {
width: 360,
height: 240,
width: 400,
height: 300,
},
})
if (error) {
Expand Down
4 changes: 2 additions & 2 deletions src/components/CaseCard.vue
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ onMounted(() => {

<style scoped>
img {
width: 300px;
height: 200px;
width: 400px;
height: 300px;
}
</style>

0 comments on commit eaed029

Please sign in to comment.