Fix CSS in DisclaimerModal
Browse filesCo-authored-by: Mishig <mishig.davaadorj@coloradocollege.edu>
src/lib/components/DisclaimerModal.svelte
CHANGED
@@ -42,9 +42,10 @@
|
|
42 |
/>
|
43 |
<button
|
44 |
type="submit"
|
45 |
-
class="w-full justify-center rounded-full border-2 border-gray-300 bg-black px-5 py-2 text-lg font-semibold text-gray-100 transition-colors hover:bg-gray-
|
46 |
class:bg-white={$page.data.loginEnabled}
|
47 |
class:text-gray-800={$page.data.loginEnabled}
|
|
|
48 |
>
|
49 |
{#if $page.data.loginEnabled}
|
50 |
Try as guest
|
|
|
42 |
/>
|
43 |
<button
|
44 |
type="submit"
|
45 |
+
class="w-full justify-center rounded-full border-2 border-gray-300 bg-black px-5 py-2 text-lg font-semibold text-gray-100 transition-colors hover:bg-gray-900"
|
46 |
class:bg-white={$page.data.loginEnabled}
|
47 |
class:text-gray-800={$page.data.loginEnabled}
|
48 |
+
class:hover:bg-slate-100={$page.data.loginEnabled}
|
49 |
>
|
50 |
{#if $page.data.loginEnabled}
|
51 |
Try as guest
|