diff options
author | metamuffin <metamuffin@disroot.org> | 2025-03-22 13:02:32 +0100 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2025-03-22 13:03:31 +0100 |
commit | 2f5d47d21dfc308c1b930cf45e13b34445d3a8e5 (patch) | |
tree | 1efa38bb95a2bc55132c0f8751727647906bb5dd /client-web/public/start.html | |
parent | aee091c28ad99862f8d94665a1efc65288a17d52 (diff) | |
download | keks-meet-2f5d47d21dfc308c1b930cf45e13b34445d3a8e5.tar keks-meet-2f5d47d21dfc308c1b930cf45e13b34445d3a8e5.tar.bz2 keks-meet-2f5d47d21dfc308c1b930cf45e13b34445d3a8e5.tar.zst |
Convert sass to css
Diffstat (limited to 'client-web/public/start.html')
-rw-r--r-- | client-web/public/start.html | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/client-web/public/start.html b/client-web/public/start.html index 4c90934..67cad7f 100644 --- a/client-web/public/start.html +++ b/client-web/public/start.html @@ -7,7 +7,7 @@ name="description" content="A simple secure web conferencing application using webrtc" /> - <link rel="stylesheet" href="/style.css" /> + <link rel="stylesheet" href="/assets/bundle.css" /> <title>keks-meet</title> </head> <body class="start"> @@ -18,8 +18,9 @@ </p> <br /> <p class="instructions"> - To start a meeting, click 'Create room' and share the URL with all - participants. You can also optionally set the room name below. + To start a meeting, click 'Create room' and share the URL with + all participants. You can also optionally set the room name + below. </p> <p class="instructions"> keks-meet is free software! It is licenced under the terms of @@ -81,7 +82,7 @@ ], ]; return frags - .map(f => f[Math.floor(Math.random() * f.length)]) + .map((f) => f[Math.floor(Math.random() * f.length)]) .join("") .trim(); } |