diff options
author | bobzel <zzzman@gmail.com> | 2025-06-13 09:00:49 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2025-06-13 09:00:49 -0400 |
commit | 2d6307f6eaa0803aefabae9e9232506611365b66 (patch) | |
tree | 7d77764b51a8dcfef4ed5554be6028fea815a4ae /src/client/views/MainView.tsx | |
parent | b91057d00512446339e48fb8488a97a1e5ef03d5 (diff) |
updated css and project to HTML5 standards. fixed border rounding for images.
Diffstat (limited to 'src/client/views/MainView.tsx')
-rw-r--r-- | src/client/views/MainView.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/MainView.tsx b/src/client/views/MainView.tsx index 686f8ed88..13b14617c 100644 --- a/src/client/views/MainView.tsx +++ b/src/client/views/MainView.tsx @@ -1039,7 +1039,7 @@ export class MainView extends ObservableReactComponent<object> { @computed get inkResources() { return ( - <svg width={0} height={0}> + <svg width={0} height={0} style={{ display: 'block' }}> <defs> <filter id="inkSelectionHalo"> <feColorMatrix |