fix(web): qbittorrent action rules spacing (#1544)

* fix(web): qbittorrent action rules spacing

* chore(lint): linting
This commit is contained in:
martylukyy 2024-05-09 09:14:26 +02:00 committed by GitHub
parent 3e7c436fe6
commit 5945b51f36
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 18 additions and 15 deletions

View file

@ -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 (
<div
className={classNames(
"col-span-12",
className ?? "col-span-12",
columns ? `sm:col-span-${columns}` : ""
)}
>