diff options
author | bobzel <zzzman@gmail.com> | 2023-09-21 19:38:19 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2023-09-21 19:38:19 -0400 |
commit | 6c0ba23d9823adfedf9011f1ca81c6c4b971b4a3 (patch) | |
tree | 931938ef34ff3232fb56d9d2bfb4e7ae94021ae9 /src/client/util/ServerStats.tsx | |
parent | 8785615363de66224933ef12c0e69d30c493df1a (diff) |
fixed following links from things with Configs to read the link following properties correctly (fixes zooming to target). fixed server stats background. fixed undoing clicking on a annotaiton button after making a text selection. fixed dropping link annotation onto text box to make a link. removed toggle sidebar type from novice.
Diffstat (limited to 'src/client/util/ServerStats.tsx')
-rw-r--r-- | src/client/util/ServerStats.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/util/ServerStats.tsx b/src/client/util/ServerStats.tsx index ac9fecd5c..08dbaac5d 100644 --- a/src/client/util/ServerStats.tsx +++ b/src/client/util/ServerStats.tsx @@ -46,12 +46,12 @@ export class ServerStats extends React.Component<{}> { <div style={{ display: 'flex', - height: 300, + height: '100%', width: 400, background: SettingsManager.userBackgroundColor, opacity: 0.6, }}> - <div style={{ width: 300, height: 100, margin: 'auto', display: 'flex', flexDirection: 'column' }}> + <div style={{ width: 300, margin: 'auto', display: 'flex', flexDirection: 'column' }}> {PingManager.Instance.IsBeating ? 'The server connection is active' : 'The server connection has been interrupted.NOTE: Any changes made will appear to persist but will be lost after a browser refreshes.'} <br /> |