uibee 1.6.11 → 1.6.12

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/globals.css CHANGED
@@ -766,8 +766,8 @@
766
766
  --background: #ededed;
767
767
  --foreground: #0e0e0e;
768
768
  --color-login: #fd8738;
769
- --color-login-950: #ededed;
770
- --color-login-900: #b0b0b0;
769
+ --color-login-950: #bebebe;
770
+ --color-login-900: #c0c0c0;
771
771
  --color-login-800: #cfcfcf;
772
772
  --color-login-700: #d9d9d9;
773
773
  --color-login-600: #e3e3e3;
@@ -4,7 +4,7 @@ import Link from 'next/link';
4
4
  import Image from 'next/image';
5
5
  import logo from '../../../images/logo-tekst-white.svg';
6
6
  export default function LoginPage({ title, description, redirectURL, version, btg, handleSubmit }) {
7
- return (_jsx("main", { className: 'w-full h-full flex items-center justify-center bg-login-900 p-8', children: _jsxs("div", { className: 'flex flex-col justify-center items-center bg-login-600 px-4 py-12 rounded-xl w-full max-w-md gap-4 md:gap-6', children: [_jsx("div", { className: 'relative aspect-[3/1] w-full', children: _jsx(Image, { src: logo, alt: 'Logo', fill: true, className: 'object-contain sm:px-12' }) }), _jsxs("h1", { className: 'text-3xl font-extrabold text-login text-center tracking-tight', children: [title, " ", btg ? ' - Break the Glass' : ''] }), description && (_jsx("p", { className: 'text-login-100 text-center font-medium text-lg mb-2 max-w-xs', children: description })), btg ? (_jsxs("form", { className: 'w-full flex flex-col gap-3 max-w-xs', onSubmit: e => {
7
+ return (_jsx("main", { className: 'w-full h-full flex items-center justify-center bg-login-800 p-8', children: _jsxs("div", { className: 'flex flex-col justify-center items-center bg-login-600 px-4 py-12 rounded-xl w-full max-w-md gap-4 md:gap-6', children: [_jsx("div", { className: 'relative aspect-[3/1] w-full', children: _jsx(Image, { src: logo, alt: 'Logo', fill: true, className: 'object-contain sm:px-12' }) }), _jsxs("h1", { className: 'text-3xl font-extrabold text-login text-center tracking-tight', children: [title, " ", btg ? ' - Break the Glass' : ''] }), description && (_jsx("p", { className: 'text-login-100 text-center font-medium text-lg mb-2 max-w-xs', children: description })), btg ? (_jsxs("form", { className: 'w-full flex flex-col gap-3 max-w-xs', onSubmit: e => {
8
8
  e.preventDefault();
9
9
  handleSubmit?.(new FormData(e.currentTarget));
10
10
  e.currentTarget.reset();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "uibee",
3
- "version": "1.6.11",
3
+ "version": "1.6.12",
4
4
  "description": "Shared components, functions and hooks for reuse across Login projects",
5
5
  "homepage": "https://github.com/Login-Linjeforening-for-IT/uibee#readme",
6
6
  "bugs": {
@@ -6,7 +6,7 @@ import logo from '@images/logo-tekst-white.svg'
6
6
 
7
7
  export default function LoginPage({title, description, redirectURL, version, btg, handleSubmit}: LoginPageProps) {
8
8
  return (
9
- <main className='w-full h-full flex items-center justify-center bg-login-900 p-8'>
9
+ <main className='w-full h-full flex items-center justify-center bg-login-800 p-8'>
10
10
  <div
11
11
  className={
12
12
  'flex flex-col justify-center items-center bg-login-600 px-4 py-12 rounded-xl w-full max-w-md gap-4 md:gap-6'
package/src/globals.css CHANGED
@@ -64,8 +64,8 @@
64
64
  --foreground: #0e0e0e;
65
65
 
66
66
  --color-login: #fd8738;
67
- --color-login-950: #ededed;
68
- --color-login-900: #b0b0b0;
67
+ --color-login-950: #bebebe;
68
+ --color-login-900: #c0c0c0;
69
69
  --color-login-800: #cfcfcf;
70
70
  --color-login-700: #d9d9d9;
71
71
  --color-login-600: #e3e3e3;