diff --git a/vite.config.ts b/vite.config.ts
index 3995f08..31c9578 100644
--- a/vite.config.ts
+++ b/vite.config.ts
@@ -22,7 +22,7 @@ export default defineConfig({
UnoCSS({
shortcuts: [
{ logo: 'i-logos-react w-6em h-6em transform transition-800 hover:rotate-180' },
- { 'btn-primary': "py-2 px-4 bg-blue-500 text-white font-bold rounded-lg shadow-md hover:bg-blue-700 focus:outline-none focus:ring-2 focus:ring-blue-400 focus:ring-opacity-75 disabled:pointer-events-none disabled:bg-slate-300" },
+ { 'btn-primary': "py-2 px-4 bg-blue-500 duration-500 text-white font-bold rounded-lg shadow-md hover:bg-blue-700 focus:outline-none focus:ring-2 focus:ring-blue-400 focus:ring-opacity-75 disabled:pointer-events-none disabled:bg-slate-300" },
],
presets: [
presetUno(),
diff --git a/webapp/components/device.tsx b/webapp/components/device.tsx
index 3d348c4..e0d1dd2 100644
--- a/webapp/components/device.tsx
+++ b/webapp/components/device.tsx
@@ -193,7 +193,7 @@ export default function DeviceBar() {
-
- toggleEnableVideo()}>
+ toggleEnableVideo()}>
{loadingVideo
?
@@ -264,7 +264,7 @@ export default function DeviceBar() {
- toggleEnableScreen()}>
+ toggleEnableScreen()}>
{loadingScreen
?
diff --git a/webapp/components/layout.tsx b/webapp/components/layout.tsx
index 8201be0..e34602d 100644
--- a/webapp/components/layout.tsx
+++ b/webapp/components/layout.tsx
@@ -82,22 +82,23 @@ export default function Layout(props: { meetingId: string }) {
-
- copy(location.href) && setCopyStatus(true)}>
- {props.meetingId}
-
- {copyStatus
- ?
+
+ {
+ copy(location.href)
+ setCopyStatus(true)
+ setTimeout(() => setCopyStatus(false), 3000)
+ }}>
+ {props.meetingId}
+
- : null
- }
+
-
- callEnd()}>
+
+ callEnd()}>
diff --git a/webapp/components/svg/audio.tsx b/webapp/components/svg/audio.tsx
index bea19d7..fd7ca9d 100644
--- a/webapp/components/svg/audio.tsx
+++ b/webapp/components/svg/audio.tsx
@@ -1,8 +1,8 @@
export default function SvgAudio() {
return (
)
}
diff --git a/webapp/components/svg/done.tsx b/webapp/components/svg/done.tsx
index f748784..8e30aee 100644
--- a/webapp/components/svg/done.tsx
+++ b/webapp/components/svg/done.tsx
@@ -1,7 +1,7 @@
export default function SvgDone() {
return (
)
}
diff --git a/webapp/components/svg/end.tsx b/webapp/components/svg/end.tsx
index 5cbc705..5984dd5 100644
--- a/webapp/components/svg/end.tsx
+++ b/webapp/components/svg/end.tsx
@@ -1,7 +1,7 @@
export default function SvgEnd() {
return (
)
}
diff --git a/webapp/components/svg/present.tsx b/webapp/components/svg/present.tsx
index f5de536..6723a75 100644
--- a/webapp/components/svg/present.tsx
+++ b/webapp/components/svg/present.tsx
@@ -1,7 +1,7 @@
function SvgPresentToAll() {
return (
)
}
@@ -9,7 +9,7 @@ function SvgPresentToAll() {
function SvgPresentCancel() {
return (
)
}
diff --git a/webapp/components/svg/video.tsx b/webapp/components/svg/video.tsx
index 26dfc23..0010850 100644
--- a/webapp/components/svg/video.tsx
+++ b/webapp/components/svg/video.tsx
@@ -1,7 +1,7 @@
export default function SvgVideo() {
return (
)
}