From 41883f3f9c4b6257eaf6c725d20d899f8362deee Mon Sep 17 00:00:00 2001 From: DJObleezy Date: Wed, 23 Apr 2025 07:40:16 -0700 Subject: [PATCH] Enhance Bitcoin logo styling in DeepSea theme Added fixed height and flexbox properties to center the Bitcoin logo. Adjusted positioning of the DeepSea ASCII art for perfect centering within the logo area. --- templates/boot.html | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/templates/boot.html b/templates/boot.html index b3d585f..61768b4 100644 --- a/templates/boot.html +++ b/templates/boot.html @@ -252,6 +252,11 @@ position: relative; white-space: pre; font-family: monospace; + height: 130px; /* Set fixed height to match original logo */ + display: flex; + align-items: center; + justify-content: center; + flex-direction: column; } /* Update the DeepSea theme logo styling */ @@ -266,9 +271,9 @@ body.deepsea-theme #bitcoin-logo::after { content: " ____ ____ \A| _ \\ ___ ___ _ __/ ___| ___ __ _ \A| | | |/ _ \\/ _ \\ '_ \\___ \\ / _ \\/ _` |\A| |_| | __/ __/ |_) |__) | __/ (_| |\A|____/ \\___|\\___|_.__/____/ \\___|\\__,_|\A|_| "; position: absolute; - top: 0; - left: 0; - right: 0; + top: 50%; + left: 50%; + transform: translate(-50%, -50%); /* Center perfectly */ font-size: 100%; /* Full size */ font-weight: bold; line-height: 1.2;