Files
Huntarr.io/frontend/templates/components/readarr_section.html
2026-02-14 12:21:05 -05:00

35 lines
1.1 KiB
HTML

<section id="readarrSection" class="content-section">
<link rel="stylesheet" href="./static/css/instance-editor.css?v=1.0.2">
<div class="content-boundary-inner">
{% from 'components/page_header_partial.html' import page_header %}
{{ page_header(back_href='./#apps', parent_icon='fas fa-th-large', parent_name='Apps', current_name='Readarr', sponsor_section_id='readarr') }}
<div id="readarrApps" class="app-content-panel"></div>
</div>
</section>
<style>
/* Readarr Section - Full Page Layout */
#readarrSection {
display: none;
width: 100%;
height: 100vh;
overflow-y: auto;
overflow-x: hidden;
padding: 0 20px 20px 20px;
margin: 0;
}
#readarrSection.active {
display: block;
}
/* App content panel - match other pages (no extra horizontal padding) */
#readarrApps {
width: 100%;
padding: 8px 0 20px 0;
margin: 0;
background-color: transparent;
box-shadow: none;
border: none;
}
</style>