Compare commits
No commits in common. "59b413dace4f3dcba77b38821ffb740524bac261" and "9065a18061eb52029acd9a1b28ec5d8368fe218f" have entirely different histories.
59b413dace
...
9065a18061
2 changed files with 7 additions and 5 deletions
|
@ -1,5 +1,5 @@
|
||||||
.Profile {
|
.Profile {
|
||||||
overflow: hidden auto;
|
height: 100%;
|
||||||
|
|
||||||
.intro {
|
.intro {
|
||||||
background-color: var(--tutu-color-surface-d);
|
background-color: var(--tutu-color-surface-d);
|
||||||
|
|
|
@ -1,4 +1,8 @@
|
||||||
import { For, Show, type Component } from "solid-js";
|
import {
|
||||||
|
For,
|
||||||
|
Show,
|
||||||
|
type Component,
|
||||||
|
} from "solid-js";
|
||||||
import Scaffold from "../material/Scaffold.js";
|
import Scaffold from "../material/Scaffold.js";
|
||||||
import {
|
import {
|
||||||
AppBar,
|
AppBar,
|
||||||
|
@ -163,7 +167,7 @@ const Settings: Component = () => {
|
||||||
}>,
|
}>,
|
||||||
() => import(`./i18n/lang-names.json`),
|
() => import(`./i18n/lang-names.json`),
|
||||||
);
|
);
|
||||||
const { pop } = useNavigator();
|
const {pop} = useNavigator();
|
||||||
const settings$ = useStore($settings);
|
const settings$ = useStore($settings);
|
||||||
const { needRefresh } = useServiceWorker();
|
const { needRefresh } = useServiceWorker();
|
||||||
const dateFnLocale = useDateFnLocale();
|
const dateFnLocale = useDateFnLocale();
|
||||||
|
@ -181,8 +185,6 @@ const Settings: Component = () => {
|
||||||
|
|
||||||
.setting-list {
|
.setting-list {
|
||||||
padding-bottom: calc(var(--safe-area-inset-bottom, 0px) + 16px);
|
padding-bottom: calc(var(--safe-area-inset-bottom, 0px) + 16px);
|
||||||
overflow: hidden auto;
|
|
||||||
height: calc(100% - var(--scaffold-topbar-height, 0));
|
|
||||||
}
|
}
|
||||||
`;
|
`;
|
||||||
return (
|
return (
|
||||||
|
|
Loading…
Reference in a new issue