Skip to content

Commit

Permalink
Small tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
philippjfr committed Mar 14, 2024
1 parent 065f326 commit fe7990f
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 8 deletions.
7 changes: 4 additions & 3 deletions panel/_templates/convert_index.html
Original file line number Diff line number Diff line change
Expand Up @@ -130,11 +130,12 @@
margin: auto 0 auto auto;
}
#title {
font-size: 1.5em;
font-size: 1.8em;
font-weight: bold;
}
#subtitle {
font-size: 1.2em;
text-align: right;
}
</style>
{% if manifest %}
Expand Down Expand Up @@ -187,7 +188,7 @@
</div>
<div class="title-area">
<span id="title">{{ title|default('Panel Applications', true) }}</span>
<span id="subtitle">Serving {{ len(items) }} apps</span>
<span id="subtitle">Running {{ items | length }} apps</span>
</div>
</div>
</section>
Expand All @@ -211,7 +212,7 @@ <h2 class="card-header">{{ item_label }}</h2>
</div>
</a>
</li>
{% end %}
{% endfor %}
</ul>
</section>
</div>
Expand Down
3 changes: 2 additions & 1 deletion panel/_templates/error.html
Original file line number Diff line number Diff line change
Expand Up @@ -46,11 +46,12 @@
margin: auto 0 auto auto;
}
#error-type {
font-size: 1.5em;
font-size: 1.8em;
font-weight: bold;
}
#error {
font-size: 1.2em;
text-align: right;
}
.content {
align-items: center;
Expand Down
9 changes: 5 additions & 4 deletions panel/_templates/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -130,11 +130,12 @@
margin: auto 0 auto auto;
}
#title {
font-size: 1.5em;
font-size: 1.8em;
font-weight: bold;
}
#subtitle {
font-size: 1.2em;
text-align: right;
}
</style>
<script type="text/javascript">
Expand Down Expand Up @@ -179,8 +180,8 @@
<img id="panel-logo" src="{{ PANEL_CDN }}images/logo_horizontal.png"/>
</div>
<div class="title-area">
<span id="title">Running Applications</span>
<span id="subtitle">Serving {{ len(items) }} apps</span>
<span id="title">Panel Applications</span>
<span id="subtitle">Running {{ len(items) }} apps</span>
</div>
</div>
</section>
Expand All @@ -206,7 +207,7 @@ <h2 class="card-header">{{ item[1:].replace("_", " ").title() }}</h2>
</div>
</a>
</li>
{% endfor %}
{% end %}
</ul>
</section>
</div>
Expand Down

0 comments on commit fe7990f

Please sign in to comment.