1
0
Fork 0
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:
LASER-Yi 2021-08-16 13:59:22 +08:00
parent 135d866249
commit a2fc1d73dd
5 changed files with 9 additions and 3 deletions

View file

@ -18,8 +18,8 @@
.dropdown-menu {
max-width: 20rem;
max-height: 40rem;
overflow-y: scroll;
max-height: 85vh;
overflow-y: auto;
}
$content-width: 16rem;

View file

@ -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>

View file

@ -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 {

View file

@ -0,0 +1,3 @@
.status-issue {
min-width: 16rem;
}

View file

@ -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"