commit
f5955ef258
|
@ -1328,6 +1328,10 @@ body:has(.media-modal-container + .status-deck) .media-post-link {
|
|||
-webkit-touch-callout: none;
|
||||
-webkit-user-drag: none;
|
||||
}
|
||||
body > .szh-menu-container {
|
||||
position: fixed !important;
|
||||
z-index: 10;
|
||||
}
|
||||
.szh-menu-container:has(.szh-menu--state-open) {
|
||||
inset: 0;
|
||||
inset: env(safe-area-inset-top) env(safe-area-inset-right)
|
||||
|
|
|
@ -87,6 +87,7 @@ function List(props) {
|
|||
return (
|
||||
<>
|
||||
<Timeline
|
||||
key={id}
|
||||
title={list.title}
|
||||
id="list"
|
||||
emptyText="Nothing yet."
|
||||
|
|
|
@ -253,7 +253,10 @@ function Notifications() {
|
|||
onClick={() => {
|
||||
announcementsListRef.current?.children[
|
||||
index
|
||||
].scrollIntoView({ behavior: 'smooth' });
|
||||
].scrollIntoView({
|
||||
behavior: 'smooth',
|
||||
block: 'nearest',
|
||||
});
|
||||
}}
|
||||
>
|
||||
{index + 1}
|
||||
|
|
|
@ -44,7 +44,7 @@ export function getCurrentInstance() {
|
|||
return (currentInstance = instances[instance]);
|
||||
} catch (e) {
|
||||
console.error(e);
|
||||
alert('Failed to load instance configuration. Please try again.');
|
||||
alert(`Failed to load instance configuration. Please try again.\n\n${e}`);
|
||||
// Temporary fix for corrupted data
|
||||
store.local.del('instances');
|
||||
location.reload();
|
||||
|
|
Loading…
Reference in a new issue