mirror of
https://github.com/idanoo/autobrr
synced 2025-07-23 08:49:13 +00:00
fix(web): qbittorrent action rules spacing (#1544)
* fix(web): qbittorrent action rules spacing * chore(lint): linting
This commit is contained in:
parent
3e7c436fe6
commit
5945b51f36
2 changed files with 18 additions and 15 deletions
|
@ -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}` : ""
|
||||
)}
|
||||
>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue