diff --git a/web/src/components/inputs/select.tsx b/web/src/components/inputs/select.tsx
index 818b1f9..ab4e075 100644
--- a/web/src/components/inputs/select.tsx
+++ b/web/src/components/inputs/select.tsx
@@ -261,6 +261,7 @@ export interface SelectFieldProps {
options: SelectFieldOption[];
columns?: COL_WIDTHS;
tooltip?: JSX.Element;
+ className?: string;
}
export const Select = ({
@@ -269,12 +270,13 @@ export const Select = ({
tooltip,
optionDefaultText,
options,
- columns = 6
+ columns = 6,
+ className
}: SelectFieldProps) => {
return (
diff --git a/web/src/screens/filters/sections/action_components/ActionQBittorrent.tsx b/web/src/screens/filters/sections/action_components/ActionQBittorrent.tsx
index 6f9b982..a2984bc 100644
--- a/web/src/screens/filters/sections/action_components/ActionQBittorrent.tsx
+++ b/web/src/screens/filters/sections/action_components/ActionQBittorrent.tsx
@@ -95,6 +95,18 @@ export const QBittorrent = ({ idx, action, clients }: ClientActionProps) => (
label="Content Layout"
optionDefaultText="Select content layout"
options={ActionContentLayoutOptions}
+ className="py-2 pb-4"
+ />
+
+ Torrent Queueing will be enabled for you if it is disabled. Ensure you set your preferred limits for it in your client.
+
+ }
/>
@@ -108,24 +120,13 @@ export const QBittorrent = ({ idx, action, clients }: ClientActionProps) => (
name={`actions.${idx}.skip_hash_check`}
label="Skip hash check"
description="Add torrent and skip hash check"
+ className="pt-4 sm:pt-4"
/>
-
-
-
- Torrent Queueing will be enabled for you if it is disabled. Ensure you set your preferred limits for it in your client.
-
- }
+ className="pt-6 sm:pt-10"
/>