mirror of
https://github.com/Ernous/TorrServerJellyfin.git
synced 2025-12-19 21:46:11 +05:00
refactor
This commit is contained in:
@@ -29,9 +29,13 @@ export const AppWrapper = styled.div`
|
|||||||
`
|
`
|
||||||
|
|
||||||
export const CenteredGrid = styled.div`
|
export const CenteredGrid = styled.div`
|
||||||
height: 100%;
|
|
||||||
display: grid;
|
display: grid;
|
||||||
place-items: center;
|
place-items: center;
|
||||||
|
|
||||||
|
${standaloneMedia(css`
|
||||||
|
height: 100vh;
|
||||||
|
width: 100vw;
|
||||||
|
`)}
|
||||||
`
|
`
|
||||||
|
|
||||||
export const AppHeader = styled.div`
|
export const AppHeader = styled.div`
|
||||||
|
|||||||
@@ -6,11 +6,6 @@ import NoServerConnection from './NoServerConnection'
|
|||||||
import AddFirstTorrent from './AddFirstTorrent'
|
import AddFirstTorrent from './AddFirstTorrent'
|
||||||
|
|
||||||
export default function TorrentList({ isOffline, isLoading, torrents }) {
|
export default function TorrentList({ isOffline, isLoading, torrents }) {
|
||||||
return (
|
|
||||||
<CenteredGrid>
|
|
||||||
<AddFirstTorrent />
|
|
||||||
</CenteredGrid>
|
|
||||||
)
|
|
||||||
if (isLoading || isOffline || !torrents.length) {
|
if (isLoading || isOffline || !torrents.length) {
|
||||||
return (
|
return (
|
||||||
<CenteredGrid>
|
<CenteredGrid>
|
||||||
|
|||||||
Reference in New Issue
Block a user