From 36f891e7106601273bdce72dc9b59153bcbb7b1d Mon Sep 17 00:00:00 2001
From: Dan Janosik <janoside@gmail.com>
Date: Fri, 21 Sep 2018 16:07:48 -0400
Subject: [PATCH] styling tweak for "Bitcoin Fun" alerts

---
 views/address.pug                | 2 +-
 views/includes/block-content.pug | 4 ++--
 views/transaction.pug            | 4 ++--
 3 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/views/address.pug b/views/address.pug
index b3589cb..622ff6e 100644
--- a/views/address.pug
+++ b/views/address.pug
@@ -21,7 +21,7 @@ block content
 					div(class="float-left", style="width: 50px; height: 50px; font-size: 18px;")
 						i(class="fas fa-certificate fa-2x", style="margin-top: 10px;")
 
-					h4(class="alert-heading h5") #{coinConfig.name} Fun
+					h4(class="alert-heading h6 font-weight-bold") #{coinConfig.name} Fun
 
 					p
 						span This looks like a miner payout address for  
diff --git a/views/includes/block-content.pug b/views/includes/block-content.pug
index 7abe875..2c22dd9 100644
--- a/views/includes/block-content.pug
+++ b/views/includes/block-content.pug
@@ -10,9 +10,9 @@ div(class="tab-content")
 	div(id="tab-details", class="tab-pane active", role="tabpanel")
 		if (global.specialBlocks && global.specialBlocks[result.getblock.hash])
 			div(class="alert alert-primary", style="padding-bottom: 0;")
-				div(class="float-left", style="width: 50px; height: 50px; font-size: 18px;")
+				div(class="float-left", style="width: 55px; height: 55px; font-size: 18px;")
 					i(class="fas fa-certificate fa-2x", style="margin-top: 10px;")
-				h4(class="alert-heading h5") #{coinConfig.name} Fun
+				h4(class="alert-heading h6 font-weight-bold") #{coinConfig.name} Fun
 
 				// special transaction info
 				- var sbInfo = global.specialBlocks[result.getblock.hash];
diff --git a/views/transaction.pug b/views/transaction.pug
index c981c17..639fe0a 100644
--- a/views/transaction.pug
+++ b/views/transaction.pug
@@ -42,10 +42,10 @@ block content
 			div(id="tab-details", class="tab-pane active", role="tabpanel")
 				if (global.specialTransactions && global.specialTransactions[txid])
 					div(class="alert alert-primary", style="padding-bottom: 0;")
-						div(class="float-left", style="width: 50px; height: 50px; font-size: 18px;")
+						div(class="float-left", style="width: 55px; height: 55px; font-size: 18px;")
 							i(class="fas fa-certificate fa-2x", style="margin-top: 10px;")
 
-						h4(class="alert-heading h5") #{coinConfig.name} Fun
+						h4(class="alert-heading h6 font-weight-bold") #{coinConfig.name} Fun
 
 						// special transaction info
 						- var stInfo = global.specialTransactions[txid];