Remove box shadow from filter header
This commit is contained in:
parent
17a6b37545
commit
48b6e8bf93
4 changed files with 4 additions and 32 deletions
|
@ -234,14 +234,7 @@ export const AlbumListHeader = ({
|
||||||
</Group>
|
</Group>
|
||||||
</Flex>
|
</Flex>
|
||||||
</PageHeader>
|
</PageHeader>
|
||||||
<Paper
|
<Paper p="1rem">
|
||||||
p="1rem"
|
|
||||||
shadow="xl"
|
|
||||||
sx={{
|
|
||||||
boxShadow: '1px 1px 10px 5px rgba(0, 0, 0, 0.3)',
|
|
||||||
zIndex: 100,
|
|
||||||
}}
|
|
||||||
>
|
|
||||||
<AlbumListHeaderFilters
|
<AlbumListHeaderFilters
|
||||||
customFilters={customFilters}
|
customFilters={customFilters}
|
||||||
gridRef={gridRef}
|
gridRef={gridRef}
|
||||||
|
|
|
@ -175,14 +175,7 @@ export const AlbumArtistListHeader = ({
|
||||||
</Group>
|
</Group>
|
||||||
</Flex>
|
</Flex>
|
||||||
</PageHeader>
|
</PageHeader>
|
||||||
<Paper
|
<Paper p="1rem">
|
||||||
p="1rem"
|
|
||||||
shadow="xl"
|
|
||||||
sx={{
|
|
||||||
boxShadow: '1px 1px 10px 5px rgba(0, 0, 0, 0.3)',
|
|
||||||
zIndex: 100,
|
|
||||||
}}
|
|
||||||
>
|
|
||||||
<AlbumArtistListHeaderFilters
|
<AlbumArtistListHeaderFilters
|
||||||
gridRef={gridRef}
|
gridRef={gridRef}
|
||||||
tableRef={tableRef}
|
tableRef={tableRef}
|
||||||
|
|
|
@ -39,14 +39,7 @@ export const PlaylistListHeader = ({ itemCount, tableRef }: PlaylistListHeaderPr
|
||||||
</LibraryHeaderBar>
|
</LibraryHeaderBar>
|
||||||
</Flex>
|
</Flex>
|
||||||
</PageHeader>
|
</PageHeader>
|
||||||
<Paper
|
<Paper p="1rem">
|
||||||
p="1rem"
|
|
||||||
shadow="xl"
|
|
||||||
sx={{
|
|
||||||
boxShadow: '1px 1px 10px 5px rgba(0, 0, 0, 0.3)',
|
|
||||||
zIndex: 100,
|
|
||||||
}}
|
|
||||||
>
|
|
||||||
<PlaylistListHeaderFilters tableRef={tableRef} />
|
<PlaylistListHeaderFilters tableRef={tableRef} />
|
||||||
</Paper>
|
</Paper>
|
||||||
</Stack>
|
</Stack>
|
||||||
|
|
|
@ -139,14 +139,7 @@ export const SongListHeader = ({
|
||||||
</Group>
|
</Group>
|
||||||
</Flex>
|
</Flex>
|
||||||
</PageHeader>
|
</PageHeader>
|
||||||
<Paper
|
<Paper p="1rem">
|
||||||
p="1rem"
|
|
||||||
shadow="xl"
|
|
||||||
sx={{
|
|
||||||
boxShadow: '1px 1px 10px 5px rgba(0, 0, 0, 0.3)',
|
|
||||||
zIndex: 100,
|
|
||||||
}}
|
|
||||||
>
|
|
||||||
<SongListHeaderFilters
|
<SongListHeaderFilters
|
||||||
customFilters={customFilters}
|
customFilters={customFilters}
|
||||||
itemCount={itemCount}
|
itemCount={itemCount}
|
||||||
|
|
Reference in a new issue