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.
This commit is contained in:
DJObleezy 2025-04-23 07:40:16 -07:00
parent cb24f54685
commit 41883f3f9c

View File

@ -252,6 +252,11 @@
position: relative; position: relative;
white-space: pre; white-space: pre;
font-family: monospace; 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 */ /* Update the DeepSea theme logo styling */
@ -266,9 +271,9 @@
body.deepsea-theme #bitcoin-logo::after { body.deepsea-theme #bitcoin-logo::after {
content: " ____ ____ \A| _ \\ ___ ___ _ __/ ___| ___ __ _ \A| | | |/ _ \\/ _ \\ '_ \\___ \\ / _ \\/ _` |\A| |_| | __/ __/ |_) |__) | __/ (_| |\A|____/ \\___|\\___|_.__/____/ \\___|\\__,_|\A|_| "; content: " ____ ____ \A| _ \\ ___ ___ _ __/ ___| ___ __ _ \A| | | |/ _ \\/ _ \\ '_ \\___ \\ / _ \\/ _` |\A| |_| | __/ __/ |_) |__) | __/ (_| |\A|____/ \\___|\\___|_.__/____/ \\___|\\__,_|\A|_| ";
position: absolute; position: absolute;
top: 0; top: 50%;
left: 0; left: 50%;
right: 0; transform: translate(-50%, -50%); /* Center perfectly */
font-size: 100%; /* Full size */ font-size: 100%; /* Full size */
font-weight: bold; font-weight: bold;
line-height: 1.2; line-height: 1.2;