This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export async function resizeImg(file: File, size = 256): Promise<File> { | |
const canvas = document.createElement("canvas") | |
const ctx = canvas.getContext("2d") | |
invariant(ctx, "Failed to convert image -- (ctx).") | |
canvas.width = size | |
canvas.height = size | |
const bitmap = await createImageBitmap(file) | |
const { width, height } = bitmap |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
:root { | |
--root-font-size: 16; | |
--root-line-height: 1.2; | |
font-size: var(--root-font-size); | |
line-height: var(--root-line-height); | |
} | |
.font-inter { | |
--cap-height: 2048; | |
--ascent: 2728; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
:root { | |
--root-font-size: 16; | |
--root-line-height: 1.2; | |
font-size: var(--root-font-size); | |
line-height: var(--root-line-height); | |
} | |
.text { | |
--font-size: 24; | |
--line-height: 1.25; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"movies": [ | |
{ | |
"coverImage": "https://images-na.ssl-images-amazon.com/images/I/71VZVXPhmKL._AC_SL1106_.jpg", | |
"title": "Iron Man 2", | |
"rating": 4.7, | |
"ticketPrice": 1200, | |
"description": "With the world now aware of his identity as Iron Man, Tony Stark must contend with both his declining health and a vengeful mad man with ties to his father's legacy." | |
}, | |
{ |