diff --git a/package-lock.json b/package-lock.json index 65fc723..cf23cf8 100644 --- a/package-lock.json +++ b/package-lock.json @@ -8,7 +8,6 @@ "npm": "^9.3.1" }, "devDependencies": { - "@tailwindcss/aspect-ratio": "^0.4.2", "@tailwindcss/typography": "^0.5.8", "elm-land": "^0.18.1", "tailwindcss": "^3.2.4" @@ -224,15 +223,6 @@ "node": ">= 8" } }, - "node_modules/@tailwindcss/aspect-ratio": { - "version": "0.4.2", - "resolved": "https://registry.npmjs.org/@tailwindcss/aspect-ratio/-/aspect-ratio-0.4.2.tgz", - "integrity": "sha512-8QPrypskfBa7QIMuKHg2TA7BqES6vhBrDLOv8Unb6FcFyd3TjKbc6lcmb9UPQHxfl24sXoJ41ux/H7qQQvfaSQ==", - "dev": true, - "peerDependencies": { - "tailwindcss": ">=2.0.0 || >=3.0.0 || >=3.0.0-alpha.1" - } - }, "node_modules/@tailwindcss/typography": { "version": "0.5.8", "resolved": "https://registry.npmjs.org/@tailwindcss/typography/-/typography-0.5.8.tgz", diff --git a/package.json b/package.json index caf8d5f..3169523 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,5 @@ { "devDependencies": { - "@tailwindcss/aspect-ratio": "^0.4.2", "@tailwindcss/typography": "^0.5.8", "elm-land": "^0.18.1", "tailwindcss": "^3.2.4" diff --git a/src/Pages/Meet.elm b/src/Pages/Meet.elm index a8354a0..1f16df4 100644 --- a/src/Pages/Meet.elm +++ b/src/Pages/Meet.elm @@ -10,8 +10,10 @@ page : View msg page = { title = "Schedule a meet with me" , body = - [ Html.div [ class "aspect-square flex items-center justify-center flex-col h-screen m-2" ] - [ Html.node "cal-com" [ id "calcom-widget", class "w-full p-2 " ] [] ] + [ Html.div [ class "flex items-center justify-center flex-col h-screen m-2" ] + [ Html.node "cal-com" [ id "calcom-widget", class "w-full p-2" ] [] + ] + , Html.div [ class "py-16" ] [] , footerLinksToSide ] } diff --git a/src/web-components/Calcom.js b/src/web-components/Calcom.js index 75b7533..d4fc3a2 100644 --- a/src/web-components/Calcom.js +++ b/src/web-components/Calcom.js @@ -49,6 +49,7 @@ customElements.define( }, hideEventTypeDetails: false, }); + console.log("These errors are not produced by the Elm app :)") } } ); diff --git a/tailwind.config.js b/tailwind.config.js index 62de895..4352425 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -4,8 +4,5 @@ module.exports = { theme: { extend: {}, }, - plugins: [ - require("@tailwindcss/typography"), - require("@tailwindcss/aspect-ratio"), - ], + plugins: [require("@tailwindcss/typography")], };