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
5 changes: 3 additions & 2 deletions src/app.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,11 @@
<head>
<meta charset="utf-8" />
<link rel="icon" href="/favicon.png" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover" />
<meta name="color-scheme" content="light dark" />
%sveltekit.head%
</head>
<body data-sveltekit-preload-data="hover">
<div style="display: contents">%sveltekit.body%</div>
</body>
</html>
</html>
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>