mirror of
https://github.com/Ernous/TorrServerJellyfin.git
synced 2025-12-20 22:16:09 +05:00
20 lines
416 B
JavaScript
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;
|
|
}
|
|
`
|