the migration is completed
This commit is contained in:
parent
771eb0429b
commit
5c8c68077c
5 changed files with 12 additions and 13 deletions
|
@ -1,5 +1,5 @@
|
||||||
export default {
|
export default {
|
||||||
plugins: {
|
plugins: {
|
||||||
'@tailwindcss/postcss': {},
|
'@tailwindcss/postcss': {}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
14
src/app.css
14
src/app.css
|
@ -12,11 +12,11 @@
|
||||||
color utility to any element that depends on these defaults.
|
color utility to any element that depends on these defaults.
|
||||||
*/
|
*/
|
||||||
@layer base {
|
@layer base {
|
||||||
*,
|
*,
|
||||||
::after,
|
::after,
|
||||||
::before,
|
::before,
|
||||||
::backdrop,
|
::backdrop,
|
||||||
::file-selector-button {
|
::file-selector-button {
|
||||||
border-color: var(--color-gray-200, currentColor);
|
border-color: var(--color-gray-200, currentColor);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -12,7 +12,6 @@
|
||||||
src: url('/fonts/PressStart2P-Regular.ttf');
|
src: url('/fonts/PressStart2P-Regular.ttf');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
body {
|
body {
|
||||||
background: black; /* Fallback */
|
background: black; /* Fallback */
|
||||||
font-family: 'Press Start 2P', sans-serif;
|
font-family: 'Press Start 2P', sans-serif;
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<div
|
<div
|
||||||
class="absolute inset-0 z-10 flex items-center justify-center bg-white bg-opacity-50"
|
class="bg-opacity-50 absolute inset-0 z-10 flex items-center justify-center bg-white"
|
||||||
id="spinner"
|
id="spinner"
|
||||||
>
|
>
|
||||||
<div class="h-20 w-20 animate-spin rounded-full border-b-2 border-t-2 border-gray-900"></div>
|
<div class="h-20 w-20 animate-spin rounded-full border-t-2 border-b-2 border-gray-900"></div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -45,7 +45,7 @@
|
||||||
<!-- Info Icon -->
|
<!-- Info Icon -->
|
||||||
<button
|
<button
|
||||||
onclick={toggleModal}
|
onclick={toggleModal}
|
||||||
class="absolute right-3 top-3 text-pink-500 transition hover:text-pink-300"
|
class="absolute top-3 right-3 text-pink-500 transition hover:text-pink-300"
|
||||||
aria-label="Open Info Modal"
|
aria-label="Open Info Modal"
|
||||||
>
|
>
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" class="h-6 w-6" viewBox="0 0 24 24">
|
<svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" class="h-6 w-6" viewBox="0 0 24 24">
|
||||||
|
@ -137,7 +137,7 @@
|
||||||
|
|
||||||
<!-- Modal -->
|
<!-- Modal -->
|
||||||
{#if showModal}
|
{#if showModal}
|
||||||
<div class="fixed inset-0 z-50 flex items-center justify-center bg-black bg-opacity-80">
|
<div class="bg-opacity-80 fixed inset-0 z-50 flex items-center justify-center bg-black">
|
||||||
<div
|
<div
|
||||||
class="w-4/5 max-w-lg rounded-lg border-4 border-green-500 bg-green-900 p-6 text-center text-green-100"
|
class="w-4/5 max-w-lg rounded-lg border-4 border-green-500 bg-green-900 p-6 text-center text-green-100"
|
||||||
>
|
>
|
||||||
|
|
Loading…
Add table
Reference in a new issue