@meetelise/chat 1.20.8 → 1.20.9
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.
package/package.json
CHANGED
package/public/dist/index.js
CHANGED
|
@@ -738,6 +738,12 @@ var e={8005:function(e,t,n){var i,r=this&&this.__extends||(i=function(e,t){retur
|
|
|
738
738
|
grid-template-rows: 44px 54px 32px 195px 167px 1px;
|
|
739
739
|
}
|
|
740
740
|
|
|
741
|
+
@media screen and (max-width: 1000px) {
|
|
742
|
+
.tour-scheduler {
|
|
743
|
+
transform: translate(-50%, -50%) scale(0.8, 0.6);
|
|
744
|
+
}
|
|
745
|
+
}
|
|
746
|
+
|
|
741
747
|
h1,
|
|
742
748
|
h2 {
|
|
743
749
|
margin: 0;
|
|
@@ -387,6 +387,12 @@ export class TourScheduler extends LitElement {
|
|
|
387
387
|
grid-template-rows: 44px 54px 32px 195px 167px 1px;
|
|
388
388
|
}
|
|
389
389
|
|
|
390
|
+
@media screen and (max-width: 1000px) {
|
|
391
|
+
.tour-scheduler {
|
|
392
|
+
transform: translate(-50%, -50%) scale(0.8, 0.6);
|
|
393
|
+
}
|
|
394
|
+
}
|
|
395
|
+
|
|
390
396
|
h1,
|
|
391
397
|
h2 {
|
|
392
398
|
margin: 0;
|
package/src/utils.ts
CHANGED
|
@@ -12,7 +12,7 @@ export function useInterval(callback: () => void, delay: number | null): void {
|
|
|
12
12
|
// Set up the interval.
|
|
13
13
|
useEffect(() => {
|
|
14
14
|
// Don't schedule if no delay is specified.
|
|
15
|
-
// Note: 0 is a valid value for delay.
|
|
15
|
+
// Note: 0 is a valid value for delay, so we can't just check for falsiness.
|
|
16
16
|
if (!delay && delay !== 0) {
|
|
17
17
|
return;
|
|
18
18
|
}
|