mirror of
https://github.com/Ernous/TorrServerJellyfin.git
synced 2025-12-19 13:36:09 +05:00
fix merge
This commit is contained in:
@@ -113,10 +113,11 @@ const Torrent = ({ torrent }) => {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div className='description-statistics-wrapper'>
|
<div className='description-statistics-wrapper'>
|
||||||
<StatusIndicator stat={stat} />
|
|
||||||
|
|
||||||
<div className='description-statistics-element-wrapper'>
|
<div className='description-statistics-element-wrapper'>
|
||||||
<div className='description-section-name'><StatusIndicator stat={stat} />{t('Size')}</div>
|
<div className='description-section-name'>
|
||||||
|
<StatusIndicator stat={stat} />
|
||||||
|
{t('Size')}
|
||||||
|
</div>
|
||||||
<div className='description-statistics-element-value'>{torrentSize > 0 && humanizeSize(torrentSize)}</div>
|
<div className='description-statistics-element-value'>{torrentSize > 0 && humanizeSize(torrentSize)}</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|||||||
@@ -142,20 +142,20 @@ export const TorrentCardDescription = styled.div`
|
|||||||
|
|
||||||
.description-statistics-wrapper {
|
.description-statistics-wrapper {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: 24px 80px 80px 1fr;
|
grid-template-columns: 80px 80px 1fr;
|
||||||
align-self: end;
|
align-self: end;
|
||||||
|
|
||||||
@media (max-width: 1260px), (max-height: 500px) {
|
@media (max-width: 1260px), (max-height: 500px) {
|
||||||
grid-template-columns: 24px 70px 70px 1fr;
|
grid-template-columns: 70px 70px 1fr;
|
||||||
}
|
}
|
||||||
|
|
||||||
@media (max-width: 770px) {
|
@media (max-width: 770px) {
|
||||||
grid-template-columns: 24px 65px 65px 1fr;
|
grid-template-columns: 65px 65px 1fr;
|
||||||
}
|
}
|
||||||
|
|
||||||
@media (max-width: 700px) {
|
@media (max-width: 700px) {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: 24px repeat(3, 1fr);
|
grid-template-columns: repeat(3, 1fr);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -163,7 +163,7 @@ export const TorrentCardDescription = styled.div`
|
|||||||
}
|
}
|
||||||
|
|
||||||
.description-statistics-element-value {
|
.description-statistics-element-value {
|
||||||
margin-left: 0px;
|
margin-left: 5px;
|
||||||
margin-bottom: 10px;
|
margin-bottom: 10px;
|
||||||
word-break: break-all;
|
word-break: break-all;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user