Skip to content
Open
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
4 changes: 3 additions & 1 deletion src/routes/persistedStoreDeclarations.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,11 @@ import { scheduledNotifications } from "$lib/calendarNotifications/notifications
import { loginStore } from "$src/lib/authentication/loginStore";
import { webmailLoggedIn } from "$components/webmailLogin/userCredsFlagStore";
import { darkMode } from "$src/lib/globalFunctions/darkMode";
import { darkMode, autoDarkMode } from "$src/lib/globalFunctions/darkMode";

const persistedStores: CapacitorPersistedStore<any>[] = [
darkMode,
autoDarkMode,
toggles,
userCreds,
dismissedItems,
Expand All @@ -31,4 +33,4 @@ export async function loadPersistedStores() {
export async function resetPersistedStores() {
console.log('Resetting persisted stores');
await Promise.all(persistedStores.map(store => store.reset()));
}
}
14 changes: 10 additions & 4 deletions src/routes/personalInfo/about.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
import contributors from "$lib/components/personalInfo/contributors.json";
import { t, locale, locales} from "$lib/i18n";
import SubPageHeader from '$shared/subPageHeader.svelte';
import IonPage from 'ionic-svelte/components/IonPage.svelte';
import { construct } from 'ionicons/icons';

interface Contributor {
Expand Down Expand Up @@ -51,7 +52,7 @@

</script>


<IonPage>
<SubPageHeader title={$t("about.title")} stackedNav/>
<ion-content class="ion-padding">
<div>
Expand Down Expand Up @@ -121,17 +122,18 @@
</div>
</div>
</ion-content>
</IonPage>

<style>

.card-content {
padding: 20px;
}

.section {
/* .section {
margin-bottom: 30px;
align-items: flex-start;
}
} */

.section-title {
color: var(--ion-color-primary);
Expand Down Expand Up @@ -164,5 +166,9 @@
transform: scale(1.2);
}

ion-content {
--padding-end: 0.6rem;
--padding-start: 0.6rem;
}

</style>