mirror of
https://github.com/LukeHagar/ui-development-kit.git
synced 2025-12-06 12:57:44 +00:00
added some styling for login page
This commit is contained in:
@@ -7,7 +7,7 @@
|
|||||||
<title>Sveltekit + Electron yeah</title>
|
<title>Sveltekit + Electron yeah</title>
|
||||||
%sveltekit.head%
|
%sveltekit.head%
|
||||||
</head>
|
</head>
|
||||||
<body data-theme="skeleton">
|
<body data-theme="wintry">
|
||||||
<div id="svelte">%sveltekit.body%</div>
|
<div id="svelte">%sveltekit.body%</div>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@@ -2,3 +2,7 @@
|
|||||||
@tailwind base;
|
@tailwind base;
|
||||||
@tailwind components;
|
@tailwind components;
|
||||||
@tailwind utilities;
|
@tailwind utilities;
|
||||||
|
:root [data-theme='wintry'] {
|
||||||
|
--theme-rounded-base: 5px;
|
||||||
|
--theme-rounded-container: 4px;
|
||||||
|
}
|
||||||
@@ -23,16 +23,20 @@
|
|||||||
</script>
|
</script>
|
||||||
|
|
||||||
<main class="p-4">
|
<main class="p-4">
|
||||||
|
<img src="/SailPoint-Developer-Community-Lockup.png" alt="sailPoint Logo" />
|
||||||
|
<div class="text-2xl text-slate-500 divide-dashed divide-y-2 mt-4 mb-2">
|
||||||
|
Enter your tenant information to continue
|
||||||
|
</div>
|
||||||
<form method="POST">
|
<form method="POST">
|
||||||
<label>
|
<label class="text-slate-600">
|
||||||
Tenant
|
Tenant
|
||||||
<input name="tenant" placeholder={``} bind:value={tenant} class="input p-2" />
|
<input name="tenant" placeholder={``} bind:value={tenant} class="input p-2" />
|
||||||
</label>
|
</label>
|
||||||
<label>
|
<label class="text-slate-600">
|
||||||
Domain
|
Domain
|
||||||
<input name="domain" placeholder={``} bind:value={domain} class="input p-2" />
|
<input name="domain" placeholder={``} bind:value={domain} class="input p-2" />
|
||||||
</label>
|
</label>
|
||||||
<label>
|
<label class="text-slate-600">
|
||||||
API Base URL
|
API Base URL
|
||||||
<input
|
<input
|
||||||
name="baseUrl"
|
name="baseUrl"
|
||||||
@@ -42,7 +46,7 @@
|
|||||||
/>
|
/>
|
||||||
</label>
|
</label>
|
||||||
|
|
||||||
<label>
|
<label class="text-slate-600">
|
||||||
Tenant URL
|
Tenant URL
|
||||||
<input
|
<input
|
||||||
name="tenantUrl"
|
name="tenantUrl"
|
||||||
@@ -52,7 +56,9 @@
|
|||||||
/>
|
/>
|
||||||
</label>
|
</label>
|
||||||
|
|
||||||
<button>login</button>
|
<button type="button" class="btn variant-filled-primary w-full mt-2 text-slate-50 text-lg">
|
||||||
|
login
|
||||||
|
</button>
|
||||||
</form>
|
</form>
|
||||||
</main>
|
</main>
|
||||||
|
|
||||||
|
|||||||
BIN
static/SailPoint-Developer-Community-Lockup.png
Normal file
BIN
static/SailPoint-Developer-Community-Lockup.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 43 KiB |
@@ -18,7 +18,7 @@ const config = {
|
|||||||
plugins: [
|
plugins: [
|
||||||
// 4. Append the Skeleton plugin (after other plugins)
|
// 4. Append the Skeleton plugin (after other plugins)
|
||||||
skeleton({
|
skeleton({
|
||||||
themes: { preset: ['skeleton'] },
|
themes: { preset: ['wintry'] },
|
||||||
}),
|
}),
|
||||||
],
|
],
|
||||||
} satisfies Config;
|
} satisfies Config;
|
||||||
|
|||||||
Reference in New Issue
Block a user