microboard-ui-temp 0.1.169 → 0.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (35) hide show
  1. package/dist/_redirects +1 -0
  2. package/dist/{chunk-g9f7dzez.js → chunk-5spq6dt9.js} +74448 -74171
  3. package/dist/{chunk-d2kcyv9d.css → chunk-mg3xye07.css} +358 -206
  4. package/dist/env.js +5 -0
  5. package/dist/example.html +2 -2
  6. package/dist/index.css +358 -206
  7. package/dist/index.html +96 -0
  8. package/dist/index.js +74448 -74171
  9. package/dist/spa.css +358 -206
  10. package/dist/spa.js +74448 -74171
  11. package/dist/titlePanel.js +21 -8
  12. package/dist/types/App/Connection.d.ts +11 -15
  13. package/dist/types/App/Storage.d.ts +2 -0
  14. package/dist/types/entities/comments/Thread/message/Message.d.ts +1 -1
  15. package/dist/types/entities/comments/{useScrollToUnreadMessage.d.ts → hooks/useScrollToUnreadMessage.d.ts} +2 -1
  16. package/dist/types/entities/comments/index.d.ts +1 -1
  17. package/dist/types/features/BoardItemsPanel/BoardItemsPanel.d.ts +2 -0
  18. package/dist/types/features/BoardItemsPanel/BoardItemsPanelContext.d.ts +11 -0
  19. package/dist/types/features/BoardItemsPanel/index.d.ts +2 -0
  20. package/dist/types/features/SidePanel/BoardItemsList.d.ts +6 -0
  21. package/dist/types/features/Templates/SelectTemplateModal/TemplateItemPreview/TemplateItemPreview.d.ts +3 -8
  22. package/dist/types/features/Templates/SelectTemplateModal/TemplateItemsGrid/TemplateItem/TemplateItem.d.ts +1 -1
  23. package/dist/types/features/Templates/SelectTemplateModal/TemplateItemsGrid/TemplateItemsGrid.d.ts +1 -1
  24. package/dist/types/features/Templates/lib.d.ts +1 -0
  25. package/dist/types/features/Templates/types.d.ts +8 -0
  26. package/dist/types/pages/TemplateBoardPage.d.ts +2 -0
  27. package/dist/types/shared/Lang/index.d.ts +2 -0
  28. package/dist/types/shared/api/base/base.d.ts +1 -0
  29. package/dist/types/shared/api/billing/types.d.ts +2 -2
  30. package/dist/types/shared/api/users/api.d.ts +3 -1
  31. package/dist/types/shared/lib/useHotkey.d.ts +8 -0
  32. package/package.json +8 -3
  33. /package/dist/types/entities/comments/{useCommentsMerge.d.ts → hooks/useCommentsMerge.d.ts} +0 -0
  34. /package/dist/types/entities/comments/{useIntersectionObserver.d.ts → hooks/useIntersectionObserver.d.ts} +0 -0
  35. /package/dist/types/{entities/comments → shared/date}/lib.d.ts +0 -0
package/dist/index.css CHANGED
@@ -88,6 +88,150 @@
88
88
  margin: 0 10px;
89
89
  }
90
90
 
91
+ /* src/entities/account/AuthForm.module.css */
92
+ .wrapper_nFyDWw {
93
+ display: flex;
94
+ background-color: #fff;
95
+ flex-direction: column;
96
+ justify-content: center;
97
+ align-items: stretch;
98
+ width: 100%;
99
+ height: 100%;
100
+ }
101
+
102
+ .form_nFyDWw {
103
+ box-sizing: border-box;
104
+ display: flex;
105
+ border-radius: 8px;
106
+ flex-direction: column;
107
+ gap: 16px;
108
+ width: 100%;
109
+ }
110
+
111
+ .link_nFyDWw {
112
+ text-decoration: none;
113
+ color: #6c7173;
114
+ display: flex;
115
+ justify-content: center;
116
+ align-self: flex-start;
117
+ width: 100%;
118
+ margin-top: 10px;
119
+ font-family: Manrope, Arial;
120
+ font-size: 14px;
121
+ font-weight: 600;
122
+ }
123
+
124
+ .link_nFyDWw:hover {
125
+ text-decoration: underline;
126
+ }
127
+
128
+ .link_nFyDWw:visited {
129
+ color: #6c7173;
130
+ }
131
+
132
+ .title_nFyDWw {
133
+ text-align: center;
134
+ margin-bottom: 32px;
135
+ font-family: Manrope, Arial;
136
+ font-weight: 600;
137
+ }
138
+
139
+ .error_nFyDWw {
140
+ color: red;
141
+ }
142
+
143
+ .button_nFyDWw {
144
+ color: #fff;
145
+ cursor: pointer;
146
+ outline-color: #0000;
147
+ box-sizing: border-box;
148
+ display: flex;
149
+ background-color: #14151a;
150
+ border: 1px solid #14151a;
151
+ border-radius: 12px;
152
+ justify-content: center;
153
+ align-items: center;
154
+ gap: 8px;
155
+ width: 100%;
156
+ height: 40px;
157
+ margin-top: 32px;
158
+ font-family: Manrope, Arial;
159
+ font-size: 14px;
160
+ font-weight: 500;
161
+ }
162
+
163
+ .button_nFyDWw:disabled {
164
+ color: #0a0f2940;
165
+ background-color: #e9eaec;
166
+ border-color: #e9eaec;
167
+ }
168
+
169
+ .button_nFyDWw:disabled:hover {
170
+ cursor: not-allowed;
171
+ color: #0a0f2940;
172
+ background-color: #e9eaec;
173
+ border-color: #e9eaec;
174
+ }
175
+
176
+ .button_nFyDWw:active {
177
+ outline: 2px solid #c8b2ff80;
178
+ }
179
+
180
+ .button_nFyDWw:hover {
181
+ background-color: #1f2228;
182
+ }
183
+
184
+ .forgot_nFyDWw {
185
+ font-weight: 600 !important;
186
+ }
187
+
188
+ .btns_nFyDWw {
189
+ display: flex;
190
+ flex-direction: column;
191
+ align-items: center;
192
+ gap: 12px;
193
+ width: 100%;
194
+ margin-top: 16px;
195
+ }
196
+
197
+ .anotherBtns_nFyDWw {
198
+ display: flex;
199
+ flex-direction: column;
200
+ gap: 16px;
201
+ width: 100%;
202
+ margin: 0 0 40px;
203
+ }
204
+
205
+ @media screen and (max-width: 640px) {
206
+ .title_nFyDWw {
207
+ margin-bottom: 8px;
208
+ }
209
+
210
+ .policy_nFyDWw {
211
+ text-align: center;
212
+ margin-bottom: 20px;
213
+ font-size: 14px;
214
+ }
215
+
216
+ .policyLink_nFyDWw {
217
+ text-decoration: none;
218
+ }
219
+
220
+ .policyLink_nFyDWw:after {
221
+ content: "";
222
+ position: absolute;
223
+ background-color: #0000;
224
+ width: 100%;
225
+ height: 2px;
226
+ bottom: -3px;
227
+ left: 0;
228
+ }
229
+
230
+ .btns_nFyDWw {
231
+ margin-top: 8px;
232
+ }
233
+ }
234
+
91
235
  /* src/shared/ui-lib/UiButton/UiButton.module.css */
92
236
  .default_XNHIwg {
93
237
  --background-color: #924fe8;
@@ -721,159 +865,6 @@
721
865
  }
722
866
  }
723
867
 
724
- /* src/features/WalletLoginButton/WalletLoginButton.module.css */
725
- .btn_JyYbVQ {
726
- position: relative;
727
- width: 100%;
728
- max-width: 252px;
729
- margin: 0 auto;
730
- font-weight: 500;
731
- }
732
-
733
- /* src/entities/account/AuthForm.module.css */
734
- .wrapper_nFyDWw {
735
- display: flex;
736
- background-color: #fff;
737
- flex-direction: column;
738
- justify-content: center;
739
- align-items: stretch;
740
- width: 100%;
741
- height: 100%;
742
- }
743
-
744
- .form_nFyDWw {
745
- box-sizing: border-box;
746
- display: flex;
747
- border-radius: 8px;
748
- flex-direction: column;
749
- gap: 16px;
750
- width: 100%;
751
- }
752
-
753
- .link_nFyDWw {
754
- text-decoration: none;
755
- color: #6c7173;
756
- display: flex;
757
- justify-content: center;
758
- align-self: flex-start;
759
- width: 100%;
760
- margin-top: 10px;
761
- font-family: Manrope, Arial;
762
- font-size: 14px;
763
- font-weight: 600;
764
- }
765
-
766
- .link_nFyDWw:hover {
767
- text-decoration: underline;
768
- }
769
-
770
- .link_nFyDWw:visited {
771
- color: #6c7173;
772
- }
773
-
774
- .title_nFyDWw {
775
- text-align: center;
776
- margin-bottom: 32px;
777
- font-family: Manrope, Arial;
778
- font-weight: 600;
779
- }
780
-
781
- .error_nFyDWw {
782
- color: red;
783
- }
784
-
785
- .button_nFyDWw {
786
- color: #fff;
787
- cursor: pointer;
788
- outline-color: #0000;
789
- box-sizing: border-box;
790
- display: flex;
791
- background-color: #14151a;
792
- border: 1px solid #14151a;
793
- border-radius: 12px;
794
- justify-content: center;
795
- align-items: center;
796
- gap: 8px;
797
- width: 100%;
798
- height: 40px;
799
- margin-top: 32px;
800
- font-family: Manrope, Arial;
801
- font-size: 14px;
802
- font-weight: 500;
803
- }
804
-
805
- .button_nFyDWw:disabled {
806
- color: #0a0f2940;
807
- background-color: #e9eaec;
808
- border-color: #e9eaec;
809
- }
810
-
811
- .button_nFyDWw:disabled:hover {
812
- cursor: not-allowed;
813
- color: #0a0f2940;
814
- background-color: #e9eaec;
815
- border-color: #e9eaec;
816
- }
817
-
818
- .button_nFyDWw:active {
819
- outline: 2px solid #c8b2ff80;
820
- }
821
-
822
- .button_nFyDWw:hover {
823
- background-color: #1f2228;
824
- }
825
-
826
- .forgot_nFyDWw {
827
- font-weight: 600 !important;
828
- }
829
-
830
- .btns_nFyDWw {
831
- display: flex;
832
- flex-direction: column;
833
- align-items: center;
834
- gap: 12px;
835
- width: 100%;
836
- margin-top: 16px;
837
- }
838
-
839
- .anotherBtns_nFyDWw {
840
- display: flex;
841
- flex-direction: column;
842
- gap: 16px;
843
- width: 100%;
844
- margin: 0 0 40px;
845
- }
846
-
847
- @media screen and (max-width: 640px) {
848
- .title_nFyDWw {
849
- margin-bottom: 8px;
850
- }
851
-
852
- .policy_nFyDWw {
853
- text-align: center;
854
- margin-bottom: 20px;
855
- font-size: 14px;
856
- }
857
-
858
- .policyLink_nFyDWw {
859
- text-decoration: none;
860
- }
861
-
862
- .policyLink_nFyDWw:after {
863
- content: "";
864
- position: absolute;
865
- background-color: #0000;
866
- width: 100%;
867
- height: 2px;
868
- bottom: -3px;
869
- left: 0;
870
- }
871
-
872
- .btns_nFyDWw {
873
- margin-top: 8px;
874
- }
875
- }
876
-
877
868
  /* src/features/ImportMiro/AuthClipboardModal/AuthClipboardModal.module.css */
878
869
  .modal_PX-HyA {
879
870
  width: 100%;
@@ -8564,56 +8555,6 @@ td.currentTariff_0VfwRg {
8564
8555
  color: #0a0f2940;
8565
8556
  }
8566
8557
 
8567
- /* src/features/LandingMenu/LandingMenu.module.css */
8568
- .menuPanel_N49qJQ {
8569
- position: absolute;
8570
- overflow: hidden;
8571
- border-radius: 900px;
8572
- top: 12px;
8573
- left: 50%;
8574
- transform: translateX(-50%);
8575
- }
8576
-
8577
- .link_N49qJQ {
8578
- background: linear-gradient(270deg, #944fe7 0%, #a347e7 24.15%, #b240e7 66.97%, #c239e7 100%);
8579
- -webkit-text-fill-color: transparent;
8580
- overflow: hidden;
8581
- white-space: nowrap;
8582
- -webkit-background-clip: text;
8583
- background-clip: text;
8584
- padding-left: 18px;
8585
- padding-right: 18px;
8586
- font-size: 16px;
8587
- font-weight: 500;
8588
- }
8589
-
8590
- .linksWrapper_N49qJQ {
8591
- display: flex;
8592
- align-items: center;
8593
- max-width: 0;
8594
- transition: max-width .3s ease-in-out;
8595
- }
8596
-
8597
- .open_N49qJQ .linksWrapper_N49qJQ {
8598
- max-width: 999px;
8599
- }
8600
-
8601
- .menuPanel_N49qJQ:not(.open_N49qJQ) .openBtn_N49qJQ {
8602
- --padding: 12px 24px;
8603
- }
8604
-
8605
- @media screen and (max-width: 1620px) {
8606
- .menuPanel_N49qJQ {
8607
- transform: translateX(-24%);
8608
- }
8609
- }
8610
-
8611
- @media screen and (max-width: 1360px) {
8612
- .menuPanel_N49qJQ {
8613
- display: none;
8614
- }
8615
- }
8616
-
8617
8558
  /* src/features/LandingMenu/MobileLandingMenu.module.css */
8618
8559
  .mobileLandingMenuWrapper_e5mELA {
8619
8560
  position: absolute;
@@ -8803,12 +8744,200 @@ td.currentTariff_0VfwRg {
8803
8744
  transform: scale(3);
8804
8745
  }
8805
8746
 
8747
+ /* src/features/SidePanel/BoardItemsList.module.css */
8748
+ .list_Jwe-NQ {
8749
+ display: flex;
8750
+ overflow-y: auto;
8751
+ flex-direction: column;
8752
+ flex: 1 1 0;
8753
+ padding: 2px 0 6px;
8754
+ }
8755
+
8756
+ .list_Jwe-NQ::-webkit-scrollbar {
8757
+ width: 4px;
8758
+ }
8759
+
8760
+ .list_Jwe-NQ::-webkit-scrollbar-thumb {
8761
+ background-color: #dee1e8;
8762
+ border-radius: 2px;
8763
+ }
8764
+
8765
+ .row_Jwe-NQ {
8766
+ display: flex;
8767
+ align-items: center;
8768
+ gap: 2px;
8769
+ padding-right: 4px;
8770
+ }
8771
+
8772
+ .item_Jwe-NQ {
8773
+ display: flex;
8774
+ color: var(--text-base-primary);
8775
+ cursor: pointer;
8776
+ text-align: left;
8777
+ overflow: hidden;
8778
+ background: none;
8779
+ border: none;
8780
+ border-radius: 5px;
8781
+ flex: 1;
8782
+ align-items: center;
8783
+ gap: 5px;
8784
+ min-width: 0;
8785
+ padding: 3px 4px;
8786
+ font-family: Manrope, sans-serif;
8787
+ font-size: 12px;
8788
+ }
8789
+
8790
+ .chevronBtn_Jwe-NQ {
8791
+ display: flex;
8792
+ cursor: pointer;
8793
+ color: var(--text-base-secondary, #888);
8794
+ background: none;
8795
+ border: none;
8796
+ border-radius: 3px;
8797
+ flex-shrink: 0;
8798
+ justify-content: center;
8799
+ align-items: center;
8800
+ width: 20px;
8801
+ height: 20px;
8802
+ padding: 0;
8803
+ }
8804
+
8805
+ .chevronBtn_Jwe-NQ:hover, .item_Jwe-NQ:hover {
8806
+ background-color: var(--bg-action-secondary-hover, #0000000d);
8807
+ }
8808
+
8809
+ .typeIcon_Jwe-NQ {
8810
+ opacity: .55;
8811
+ flex-shrink: 0;
8812
+ }
8813
+
8814
+ .label_Jwe-NQ {
8815
+ overflow: hidden;
8816
+ text-overflow: ellipsis;
8817
+ white-space: nowrap;
8818
+ }
8819
+
8820
+ .empty_Jwe-NQ {
8821
+ color: var(--text-base-secondary, #888);
8822
+ padding: 4px 8px 6px 28px;
8823
+ font-family: Manrope, sans-serif;
8824
+ font-size: 12px;
8825
+ }
8826
+
8827
+ .highlight_Jwe-NQ {
8828
+ color: inherit;
8829
+ background-color: #924fe833;
8830
+ border-radius: 2px;
8831
+ }
8832
+
8833
+ /* src/features/BoardItemsPanel/BoardItemsPanel.module.css */
8834
+ .panel_8tFAuw {
8835
+ overflow: hidden;
8836
+ box-shadow: none;
8837
+ position: relative;
8838
+ display: flex;
8839
+ border: none;
8840
+ flex-direction: column;
8841
+ align-items: stretch;
8842
+ width: 0;
8843
+ margin-left: 0;
8844
+ transition: width .3s, max-width .3s, min-width .3s;
8845
+ }
8846
+
8847
+ .panel_8tFAuw.open_8tFAuw {
8848
+ visibility: visible;
8849
+ border: 1px solid var(--border-action-normal);
8850
+ width: 260px;
8851
+ min-width: 180px;
8852
+ max-width: 35dvw;
8853
+ margin-left: 12px;
8854
+ box-shadow: 0 4px 4px #00000040;
8855
+ padding: 8px 4px !important;
8856
+ }
8857
+
8858
+ .header_8tFAuw {
8859
+ display: flex;
8860
+ justify-content: space-between;
8861
+ align-items: center;
8862
+ padding: 0 4px;
8863
+ }
8864
+
8865
+ .title_8tFAuw {
8866
+ flex: 1 0;
8867
+ padding: 4px 8px;
8868
+ font-size: 14px;
8869
+ font-weight: 500;
8870
+ line-height: 20px;
8871
+ }
8872
+
8873
+ .close_8tFAuw {
8874
+ --padding: 4px;
8875
+ --min-width: 28px;
8876
+ --min-height: 28px;
8877
+ color: var(--text-base-primary);
8878
+ border-radius: 12px;
8879
+ }
8880
+
8881
+ .search_8tFAuw {
8882
+ display: flex;
8883
+ border: 1px solid var(--border-action-normal, #0000001f);
8884
+ background: var(--bg-action-secondary, #f5f5f7);
8885
+ border-radius: 8px;
8886
+ align-items: center;
8887
+ gap: 6px;
8888
+ margin: 4px 8px 2px;
8889
+ padding: 5px 8px;
8890
+ }
8891
+
8892
+ .searchIcon_8tFAuw {
8893
+ opacity: .45;
8894
+ flex-shrink: 0;
8895
+ }
8896
+
8897
+ .searchInput_8tFAuw {
8898
+ outline: none;
8899
+ color: var(--text-base-primary);
8900
+ background: none;
8901
+ border: none;
8902
+ flex: 1;
8903
+ min-width: 0;
8904
+ font-family: Manrope, sans-serif;
8905
+ font-size: 12px;
8906
+ }
8907
+
8908
+ .searchInput_8tFAuw::placeholder {
8909
+ color: var(--text-base-secondary, #aaa);
8910
+ }
8911
+
8912
+ .searchClear_8tFAuw {
8913
+ display: flex;
8914
+ cursor: pointer;
8915
+ opacity: .45;
8916
+ background: none;
8917
+ border: none;
8918
+ border-radius: 3px;
8919
+ flex-shrink: 0;
8920
+ justify-content: center;
8921
+ align-items: center;
8922
+ padding: 0;
8923
+ }
8924
+
8925
+ .searchClear_8tFAuw:hover {
8926
+ opacity: .8;
8927
+ }
8928
+
8929
+ .content_8tFAuw {
8930
+ overflow: hidden;
8931
+ display: flex;
8932
+ flex-direction: column;
8933
+ flex: 1 1 0;
8934
+ }
8935
+
8806
8936
  /* src/features/TitlePanel/TitlePanel.module.css */
8807
8937
  .panel_i3VZwA {
8808
8938
  position: absolute;
8809
8939
  top: -60px;
8810
8940
  left: var(--absolute-position-panel-padding);
8811
- overflow: hidden;
8812
8941
  }
8813
8942
 
8814
8943
  .logoWrapper_i3VZwA.viewMode_i3VZwA {
@@ -9035,7 +9164,30 @@ input.rename_i3VZwA {
9035
9164
  width: 50%;
9036
9165
  }
9037
9166
 
9038
- .btn_FAHvNA {
9167
+ .btn_FAHvNA, .previewUpload_FAHvNA {
9168
+ width: 100%;
9169
+ }
9170
+
9171
+ .fileInputHidden_FAHvNA {
9172
+ display: none;
9173
+ }
9174
+
9175
+ .previewImageWrapper_FAHvNA {
9176
+ display: flex;
9177
+ flex-direction: column;
9178
+ align-items: center;
9179
+ gap: 8px;
9180
+ width: 100%;
9181
+ }
9182
+
9183
+ .previewImage_FAHvNA {
9184
+ object-fit: cover;
9185
+ border-radius: 8px;
9186
+ width: 100%;
9187
+ max-height: 200px;
9188
+ }
9189
+
9190
+ .changePreviewBtn_FAHvNA {
9039
9191
  width: 100%;
9040
9192
  }
9041
9193
 
@@ -11530,7 +11682,7 @@ input.rename_i3VZwA {
11530
11682
  flex-direction: column;
11531
11683
  align-items: center;
11532
11684
  width: 420px;
11533
- max-width: 80dvw;
11685
+ max-width: 96dvw;
11534
11686
  padding: 0 !important;
11535
11687
  }
11536
11688
 
@@ -0,0 +1,96 @@
1
+ <!doctype html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="utf-8" />
5
+ <meta
6
+ name="viewport"
7
+ content="
8
+ width=device-width,
9
+ initial-scale=1,
10
+ shrink-to-fit=no
11
+ minimum-scale=1.0,
12
+ maximum-scale=1.0,
13
+ user-scalable=no
14
+ "
15
+ />
16
+ <title>Microboard</title>
17
+ <link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16-yz8wdy0r.png" />
18
+ <link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32-cwn1gceh.png" />
19
+ <link rel="icon" type="image/svg+xml" href="public/favicon.svg" />
20
+ <link rel="icon" href="/favicon-886rjdq8.ico" />
21
+ <link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon-8hjanz47.png" />
22
+ <link rel="manifest" href="/site-fdcbs67f.webmanifest" />
23
+ <link rel="preconnect" href="https://fonts.googleapis.com" />
24
+ <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
25
+ <link
26
+ href="https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap"
27
+ rel="stylesheet"
28
+ />
29
+ <link
30
+ href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&display=swap"
31
+ rel="stylesheet"
32
+ />
33
+
34
+ <link rel="stylesheet" crossorigin href="/chunk-mg3xye07.css"><script src="/env.js"></script>
35
+ <script type="module" crossorigin src="/chunk-5spq6dt9.js"></script></head>
36
+
37
+ <body
38
+ style="
39
+ margin: 0;
40
+ height: 100%;
41
+ width: 100%;
42
+ /* overflow: hidden; */
43
+ position: fixed;
44
+ padding: 0;
45
+ touch-action: none;
46
+ -ms-touch-action: none;
47
+ background-color: #fff;
48
+ "
49
+ >
50
+ <div
51
+ id="root"
52
+ style="
53
+ height: 100%;
54
+ width: 100%;
55
+ resize: none;
56
+ background: none;
57
+ outline: none;
58
+ border: none;
59
+ padding: 0px;
60
+ margin: 0px;
61
+ overflow: auto;
62
+ "
63
+ >
64
+ <div
65
+ style="
66
+ display: flex;
67
+ justify-content: center;
68
+ align-items: center;
69
+ height: 100vh;
70
+ width: 100vw;
71
+ "
72
+ >
73
+ <div style="transform: scale(7)">
74
+ <img src="public/loader.svg" alt="" />
75
+ </div>
76
+ </div>
77
+ </div>
78
+ <div id="modal"></div>
79
+ <div id="selector"></div>
80
+ <div
81
+ id="drag"
82
+ style="
83
+ position: fixed;
84
+ left: 0;
85
+ top: 0;
86
+ touch-action: none;
87
+ height: 100%;
88
+ width: 100%;
89
+ z-index: 1000;
90
+ pointer-events: none;
91
+ "
92
+ ></div>
93
+ <div id="tooltip"></div>
94
+
95
+ </body>
96
+ </html>