Files
TorrServerJellyfin/web/src/components/DialogTorrentDetailsContent/DetailedView/style.js
Daniel Shleifman 0ccf0caf32 refactor
2021-06-01 19:37:40 +03:00

20 lines
416 B
JavaScript

import styled from 'styled-components'
export const DetailedViewWidgetSection = styled.section`
padding: 40px;
background: linear-gradient(145deg, #e4f6ed, #b5dec9);
@media (max-width: 800px) {
padding: 20px;
}
`
export const DetailedViewCacheSection = styled.section`
padding: 40px;
box-shadow: inset 3px 25px 8px -25px rgba(0, 0, 0, 0.5);
@media (max-width: 800px) {
padding: 20px;
}
`