mirror of
https://github.com/stoatchat/for-legacy-web.git
synced 2026-03-06 08:38:37 +00:00
Fix home tab item width on Firefox.
Fix inability to leave server, for #95. Add warning to invite bot.
This commit is contained in:
@@ -13,7 +13,7 @@
|
||||
|
||||
.actions {
|
||||
gap: 8px;
|
||||
min-width: 240px;
|
||||
width: 240px;
|
||||
|
||||
margin: auto;
|
||||
display: flex;
|
||||
|
||||
@@ -10,6 +10,7 @@ import Button from "../../components/ui/Button";
|
||||
import ComboBox from "../../components/ui/ComboBox";
|
||||
import Overline from "../../components/ui/Overline";
|
||||
import Preloader from "../../components/ui/Preloader";
|
||||
import Tip from "../../components/ui/Tip";
|
||||
|
||||
export default function InviteBot() {
|
||||
const { id } = useParams<{ id: string }>();
|
||||
@@ -27,6 +28,9 @@ export default function InviteBot() {
|
||||
|
||||
return (
|
||||
<div style={{ padding: "6em" }}>
|
||||
<Tip warning hideSeparator>
|
||||
This section is under construction.
|
||||
</Tip>
|
||||
{typeof data === "undefined" && <Preloader type="spinner" />}
|
||||
{data && (
|
||||
<>
|
||||
|
||||
Reference in New Issue
Block a user