clarify suspend on subdomains

This commit is contained in:
f0x 2023-01-18 13:28:58 +00:00
parent b474872d89
commit 619dc642f5
2 changed files with 8 additions and 3 deletions

View File

@ -63,10 +63,11 @@ module.exports = function InstanceOverview({ baseUrl }) {
<div className="instance-list">
<h2>Suspended instances</h2>
<span>
<p>
Suspending a domain blocks all current and future accounts on that instance. Stored content will be removed,
and no more data is sent to the remote server.
</span>
and no more data is sent to the remote server.<br />
This extends to all subdomains as well, so blocking 'example.com' also includes 'social.example.com'.
</p>
<form className="filter" role="search" onSubmit={filterFormSubmit}>
<TextInput field={filterField} placeholder="example.com" label="Search or add domain suspension" />
<Link to={`${baseUrl}/${filter}`}><a className="button">Suspend</a></Link>

View File

@ -415,6 +415,10 @@ span.form-info {
}
.instance-list {
p {
margin-top: 0;
}
.filter {
display: flex;
gap: 0.5rem;