mirror of
https://github.com/morpheus65535/bazarr
synced 2025-02-22 05:51:10 +00:00
Fix some style issues
This commit is contained in:
parent
135d866249
commit
a2fc1d73dd
5 changed files with 9 additions and 3 deletions
|
@ -18,8 +18,8 @@
|
|||
|
||||
.dropdown-menu {
|
||||
max-width: 20rem;
|
||||
max-height: 40rem;
|
||||
overflow-y: scroll;
|
||||
max-height: 85vh;
|
||||
overflow-y: auto;
|
||||
}
|
||||
|
||||
$content-width: 16rem;
|
||||
|
|
|
@ -11,7 +11,7 @@ const ReleasesView: FunctionComponent<Props> = () => {
|
|||
const releases = useSystemReleases();
|
||||
|
||||
return (
|
||||
<Container fluid className="px-5 py-4 bg-light">
|
||||
<Container fluid className="px-3 py-4 bg-light">
|
||||
<Helmet>
|
||||
<title>Releases - Bazarr (System)</title>
|
||||
</Helmet>
|
||||
|
|
|
@ -12,6 +12,7 @@ import { Helmet } from "react-helmet";
|
|||
import { useSystemHealth, useSystemStatus } from "../../@redux/hooks";
|
||||
import { AsyncOverlay } from "../../components";
|
||||
import { GithubRepoRoot } from "../../constants";
|
||||
import "./style.scss";
|
||||
import Table from "./table";
|
||||
|
||||
interface InfoProps {
|
||||
|
|
3
frontend/src/System/Status/style.scss
Normal file
3
frontend/src/System/Status/style.scss
Normal file
|
@ -0,0 +1,3 @@
|
|||
.status-issue {
|
||||
min-width: 16rem;
|
||||
}
|
|
@ -16,6 +16,7 @@ const Table: FunctionComponent<Props> = ({ health }) => {
|
|||
{
|
||||
Header: "Issue",
|
||||
accessor: "issue",
|
||||
className: "status-issue",
|
||||
},
|
||||
],
|
||||
[]
|
||||
|
@ -23,6 +24,7 @@ const Table: FunctionComponent<Props> = ({ health }) => {
|
|||
|
||||
return (
|
||||
<SimpleTable
|
||||
responsive
|
||||
columns={columns}
|
||||
data={health}
|
||||
emptyText="No issues with your configuration"
|
||||
|
|
Loading…
Reference in a new issue