Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[PLA-1779] fix darkmode ui #119

Merged
merged 1 commit into from
Jun 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion resources/js/components/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ const initialTheme = () => {
};

(async () => {
await appStore.init();
initialTheme();
await appStore.init();

if (window.bootstrap?.name) {
return;
Expand Down
2 changes: 1 addition & 1 deletion resources/js/components/SignTransaction.vue
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<span v-if="!signing">Select an account to sign the transaction</span>
<span v-else>Signing</span>
</DialogTitle>
<div class="flex flex-col space-y-2 mt-4 relative">
<div class="flex flex-col space-y-2 mt-4 relative text-light-content-strong dark:text-dark-content-strong">
<div v-if="signing">
<span>
<span> Address: </span>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<template>
<div
class="flex h-full flex-col divide-y divide-light-stroke dark:divide-dark-stroke bg-light-surface-primary dark:bg-dark-surface-primary shadow-xl"
class="flex h-full flex-col divide-y divide-light-stroke dark:divide-dark-stroke bg-light-surface-primary dark:bg-dark-surface-primary shadow-xl text-light-content-strong dark:text-dark-content-strong"
>
<h3 class="text-xl font-semibold px-4 sm:px-6 py-4 text-light-content-strong dark:text-dark-content-strong">
Transaction Details for {{ transaction?.transactionId ?? transaction?.id }}
Expand Down
Loading