From dcea8a374b82f62fc57c9d7524d4254bd8da8225 Mon Sep 17 00:00:00 2001 From: Roan Horning Date: Sun, 20 Oct 2024 10:33:10 -0400 Subject: [PATCH] Set minimum height of host table avatar column --- public_html/css/hpr.css | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/public_html/css/hpr.css b/public_html/css/hpr.css index f302b17..d979989 100644 --- a/public_html/css/hpr.css +++ b/public_html/css/hpr.css @@ -270,6 +270,12 @@ pre { padding: 0.5rem } +code { + background: #eee; + border-radius: 0.2rem; + font-size: 0.95rem; +} + pre code { padding-right: 0.5rem; font-size: 0.85rem; @@ -324,6 +330,7 @@ table.hosts td:first-child { min-width: 60px; max-width: 80px; text-align: left; + height: 62px; } table.hosts th:nth-child(2), @@ -449,6 +456,10 @@ fieldset>input { clear: right; } + table.hosts td:first-child { + height: 80px; + } + footer #more_info nav.column { clear: none; float: left; @@ -504,4 +515,4 @@ fieldset>input { fieldset>table td input[type="radio"] { margin-top: 1.5rem; } -} \ No newline at end of file +}