mirror of
https://github.com/morpheus65535/bazarr
synced 2025-02-22 14:00:52 +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 {
|
.dropdown-menu {
|
||||||
max-width: 20rem;
|
max-width: 20rem;
|
||||||
max-height: 40rem;
|
max-height: 85vh;
|
||||||
overflow-y: scroll;
|
overflow-y: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
$content-width: 16rem;
|
$content-width: 16rem;
|
||||||
|
|
|
@ -11,7 +11,7 @@ const ReleasesView: FunctionComponent<Props> = () => {
|
||||||
const releases = useSystemReleases();
|
const releases = useSystemReleases();
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Container fluid className="px-5 py-4 bg-light">
|
<Container fluid className="px-3 py-4 bg-light">
|
||||||
<Helmet>
|
<Helmet>
|
||||||
<title>Releases - Bazarr (System)</title>
|
<title>Releases - Bazarr (System)</title>
|
||||||
</Helmet>
|
</Helmet>
|
||||||
|
|
|
@ -12,6 +12,7 @@ import { Helmet } from "react-helmet";
|
||||||
import { useSystemHealth, useSystemStatus } from "../../@redux/hooks";
|
import { useSystemHealth, useSystemStatus } from "../../@redux/hooks";
|
||||||
import { AsyncOverlay } from "../../components";
|
import { AsyncOverlay } from "../../components";
|
||||||
import { GithubRepoRoot } from "../../constants";
|
import { GithubRepoRoot } from "../../constants";
|
||||||
|
import "./style.scss";
|
||||||
import Table from "./table";
|
import Table from "./table";
|
||||||
|
|
||||||
interface InfoProps {
|
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",
|
Header: "Issue",
|
||||||
accessor: "issue",
|
accessor: "issue",
|
||||||
|
className: "status-issue",
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
[]
|
[]
|
||||||
|
@ -23,6 +24,7 @@ const Table: FunctionComponent<Props> = ({ health }) => {
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<SimpleTable
|
<SimpleTable
|
||||||
|
responsive
|
||||||
columns={columns}
|
columns={columns}
|
||||||
data={health}
|
data={health}
|
||||||
emptyText="No issues with your configuration"
|
emptyText="No issues with your configuration"
|
||||||
|
|
Loading…
Reference in a new issue