Compare commits

..

No commits in common. "2de1960fb53fb9e68b7b676858cc8ff95886a355" and "66366e648626c841839b3af2c92b0e6ecf0e66e2" have entirely different histories.

3 changed files with 7 additions and 7 deletions

View file

@ -1,7 +1,7 @@
{
"$schema": "https://json.schemastore.org/package",
"name": "tutu",
"version": "1.0.3",
"version": "1.0.2",
"description": "",
"private": true,
"type": "module",

View file

@ -22,12 +22,11 @@
@media (max-width: 560px) {
& {
left: 0;
top: 0;
top: var(--safe-area-inset-top, 0);
transform: none;
bottom: 0;
height: 100vh;
height: 100dvh;
max-height: 100%;
}
}
}

View file

@ -49,7 +49,7 @@ const Settings: ParentComponent = () => {
<Scaffold
topbar={
<AppBar position="static">
<Toolbar variant="dense" sx={{paddingTop: "var(--safe-area-inset-top, 0px)"}}>
<Toolbar variant="dense">
<IconButton onClick={[navigate, -1]}>
<CloseIcon />
</IconButton>
@ -94,15 +94,16 @@ const Settings: ParentComponent = () => {
<ListItem>
<ListItemText secondary="Regular">Fonts</ListItemText>
</ListItem>
<ListItem onClick={(e) =>
$settings.setKey("prefetchTootsDisabled", !settings$().prefetchTootsDisabled)
}>
<ListItem>
<ListItemText secondary="Tutu will download toots before you scroll to the position.">
Prefetch Toots
</ListItemText>
<ListItemSecondaryAction>
<Switch
checked={!settings$().prefetchTootsDisabled}
onChange={(e) =>
$settings.setKey("prefetchTootsDisabled", !e.target.checked)
}
/>
</ListItemSecondaryAction>
</ListItem>