mirror of
https://github.com/jeffvli/feishin.git
synced 2026-05-14 04:20:07 +02:00
revert padding of sidebar filters
This commit is contained in:
@@ -193,7 +193,7 @@ export const JellyfinAlbumFilters = ({ disableArtistFilter }: JellyfinAlbumFilte
|
||||
const debouncedHandleMaxYearFilter = useDebouncedCallback(handleMaxYearFilter, 300);
|
||||
|
||||
return (
|
||||
<Stack px="xl" py="md">
|
||||
<Stack px="md" py="md">
|
||||
{yesNoFilter.map((filter) => (
|
||||
<YesNoSelect
|
||||
defaultValue={filter.value ? filter.value.toString() : undefined}
|
||||
|
||||
@@ -152,7 +152,7 @@ export const NavidromeAlbumFilters = ({ disableArtistFilter }: NavidromeAlbumFil
|
||||
const debouncedHandleYearFilter = useDebouncedCallback(handleYearFilter, 300);
|
||||
|
||||
return (
|
||||
<Stack px="xl" py="md">
|
||||
<Stack px="md" py="md">
|
||||
{yesNoUndefinedFilters.map((filter) => (
|
||||
<YesNoSelect
|
||||
clearable
|
||||
|
||||
@@ -143,7 +143,7 @@ export const SubsonicAlbumFilters = ({ disableArtistFilter }: SubsonicAlbumFilte
|
||||
const debouncedHandleMaxYearFilter = useDebouncedCallback(handleMaxYearFilter, 300);
|
||||
|
||||
return (
|
||||
<Stack px="xl" py="md">
|
||||
<Stack px="md" py="md">
|
||||
{toggleFilters.map((filter) => (
|
||||
<Group justify="space-between" key={`ss-filter-${filter.label}`}>
|
||||
<Text>{filter.label}</Text>
|
||||
|
||||
@@ -294,7 +294,7 @@ export const Lyrics = ({ fadeOutNoLyricsMessage = true }: LyricsProps) => {
|
||||
<ComponentErrorBoundary>
|
||||
<div className={styles.lyricsContainer}>
|
||||
{isLoadingLyrics ? (
|
||||
<Spinner container size={25} />
|
||||
<Spinner container />
|
||||
) : (
|
||||
<AnimatePresence mode="sync">
|
||||
{hasNoLyrics ? (
|
||||
|
||||
@@ -108,7 +108,7 @@ export const ListFiltersTitle = () => {
|
||||
const canUnpin = Boolean(setIsSidebarOpen);
|
||||
|
||||
return (
|
||||
<Group justify="space-between" pb={0} pl="xl" pr="xl" pt="md">
|
||||
<Group justify="space-between" pb={0} pl="md" pr="md" pt="md">
|
||||
<Text fw={500} size="xl">
|
||||
{t('common.filters', { postProcess: 'sentenceCase' })}
|
||||
</Text>
|
||||
|
||||
@@ -137,7 +137,7 @@ export const JellyfinSongFilters = () => {
|
||||
);
|
||||
|
||||
return (
|
||||
<Stack px="xl" py="md">
|
||||
<Stack px="md" py="md">
|
||||
{yesNoFilters.map((filter) => (
|
||||
<YesNoSelect
|
||||
defaultValue={filter.value ? filter.value.toString() : undefined}
|
||||
|
||||
@@ -77,7 +77,7 @@ export const NavidromeSongFilters = () => {
|
||||
const debouncedHandleYearFilter = useDebouncedCallback(handleYearFilter, 300);
|
||||
|
||||
return (
|
||||
<Stack px="xl" py="md">
|
||||
<Stack px="md" py="md">
|
||||
{yesNoUndefinedFilters.map((filter) => (
|
||||
<YesNoSelect
|
||||
clearable
|
||||
|
||||
@@ -51,7 +51,7 @@ export const SubsonicSongFilters = () => {
|
||||
);
|
||||
|
||||
return (
|
||||
<Stack px="xl" py="md">
|
||||
<Stack px="md" py="md">
|
||||
{toggleFilters.map((filter) => (
|
||||
<Group justify="space-between" key={`ss-filter-${filter.label}`}>
|
||||
<Text>{filter.label}</Text>
|
||||
|
||||
Reference in New Issue
Block a user