1
0
mirror of https://github.com/spacebarchat/client.git synced 2024-11-22 02:12:38 +01:00

make home section placeholder text not selectable

This commit is contained in:
Puyodead1 2024-03-21 23:28:24 -04:00
parent b691e4c93f
commit fe6961acc2
No known key found for this signature in database
GPG Key ID: A4FA4FEC0DD353FC

View File

@ -93,7 +93,14 @@ function Chat() {
if (activeGuildId && activeGuildId === "@me") {
return (
<WrapperTwo>
<span>Home Section Placeholder</span>
<span
style={{
padding: "1rem",
userSelect: "none",
}}
>
Home Section Placeholder
</span>
</WrapperTwo>
);
}