diff --git a/package-lock.json b/package-lock.json index 36e423a..4cabda1 100644 --- a/package-lock.json +++ b/package-lock.json @@ -24,10 +24,13 @@ "eslint": "8.6.0", "eslint-config-next": "12.0.7", "postcss": "8.4.6", - "prettier": "^2.5.1", - "prettier-plugin-tailwindcss": "^0.1.8", + "prettier": "2.5.1", + "prettier-plugin-tailwindcss": "0.1.8", "tailwindcss": "3.0.23", "typescript": "4.5.4" + }, + "engines": { + "node": ">=14.18.1 <=16.x" } }, "node_modules/@babel/code-frame": { diff --git a/pages/index.tsx b/pages/index.tsx index f106118..c3dfdfb 100644 --- a/pages/index.tsx +++ b/pages/index.tsx @@ -29,8 +29,11 @@ const Home: React.FC<{ metadata: IdPMetadata }> = ({ metadata }) => {

Mock SAML Metadata

-

- A mock SAML 2.0 Identity Provider for development and testing SAML SSO integrations. Please do not use this in production. +

+ A mock SAML 2.0 Identity Provider for development and testing SAML SSO integrations. +

+

+ Please do not use this in production.

diff --git a/styles/globals.css b/styles/globals.css index ab576b3..aec526b 100644 --- a/styles/globals.css +++ b/styles/globals.css @@ -10,6 +10,7 @@ body { 'Helvetica Neue', sans-serif; height: 100%; } + #__next { height: 100%; } @@ -25,10 +26,10 @@ a { @layer components { .button { - @apply block px-4 py-2 font-semibold leading-8 text-white rounded-lg shadow-md bg-indigo-500 hover:bg-indigo-600 focus:outline-none focus:ring-4 focus:ring-indigo-300 focus:ring-opacity-100; + @apply block px-4 py-2 leading-8 text-white bg-indigo-500 rounded-md shadow-md hover:bg-indigo-600 focus:outline-none focus:ring-4 focus:ring-indigo-300 focus:ring-opacity-100; } .input { - @apply px-3 py-1 text-base leading-8 text-gray-700 transition-colors duration-200 ease-in-out bg-gray-100 bg-opacity-50 border border-gray-300 rounded-md outline-none focus:ring-2 focus:ring-indigo-300 focus:bg-transparent focus:border-indigo-500; + @apply px-3 py-1 text-base leading-8 text-gray-700 transition-colors duration-200 ease-in-out bg-gray-100 bg-opacity-50 border border-gray-300 rounded-md outline-none focus:border-indigo-500 focus:bg-transparent focus:ring-2 focus:ring-indigo-300; } }