Skip to content

Commit

Permalink
Fix some style issues
Browse files Browse the repository at this point in the history
  • Loading branch information
LASER-Yi committed Aug 16, 2021
1 parent 135d866 commit a2fc1d7
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 3 deletions.
4 changes: 2 additions & 2 deletions frontend/src/App/notification.scss
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@

.dropdown-menu {
max-width: 20rem;
max-height: 40rem;
overflow-y: scroll;
max-height: 85vh;
overflow-y: auto;
}

$content-width: 16rem;
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/System/Releases/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down
1 change: 1 addition & 0 deletions frontend/src/System/Status/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
3 changes: 3 additions & 0 deletions frontend/src/System/Status/style.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
.status-issue {
min-width: 16rem;
}
2 changes: 2 additions & 0 deletions frontend/src/System/Status/table.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,15 @@ const Table: FunctionComponent<Props> = ({ health }) => {
{
Header: "Issue",
accessor: "issue",
className: "status-issue",
},
],
[]
);

return (
<SimpleTable
responsive
columns={columns}
data={health}
emptyText="No issues with your configuration"
Expand Down

0 comments on commit a2fc1d7

Please sign in to comment.