feat(ui): Add series support Sonarr

This commit is contained in:
2024-12-02 13:53:28 -07:00
parent d7f6d12f59
commit 82e51be096
20 changed files with 599 additions and 44 deletions
+2
View File
@@ -21,6 +21,7 @@ pub enum Size {
Small,
Medium,
Large,
Long,
}
impl Size {
@@ -37,6 +38,7 @@ impl Size {
Size::Small => (40, 40),
Size::Medium => (60, 60),
Size::Large => (75, 75),
Size::Long => (65, 80),
}
}
}