about summary refs log tree commit diff stats
path: root/html/tower/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'html/tower/index.html')
-rw-r--r--html/tower/index.html8
1 files changed, 8 insertions, 0 deletions
diff --git a/html/tower/index.html b/html/tower/index.html
index d9dd854..8f6fd05 100644
--- a/html/tower/index.html
+++ b/html/tower/index.html
@@ -50,6 +50,11 @@
             height: 40px;
             margin-bottom: 5px;
         }
+        .tower-name {
+            font-size: 14px;
+            font-weight: bold;
+            margin-bottom: 3px;
+        }
         .tower-cost {
             font-size: 12px;
             color: #666;
@@ -79,14 +84,17 @@
         <div class="tower-palette">
             <div class="tower-option" draggable="true" data-tower-type="BASIC">
                 <div class="tower-preview" style="background: #4a90e2;"></div>
+                <div class="tower-name">Basic</div>
                 <div class="tower-cost">$20</div>
             </div>
             <div class="tower-option" draggable="true" data-tower-type="SNIPER">
                 <div class="tower-preview" style="background: #9b59b6;"></div>
+                <div class="tower-name">Sniper</div>
                 <div class="tower-cost">$40</div>
             </div>
             <div class="tower-option" draggable="true" data-tower-type="RAPID">
                 <div class="tower-preview" style="background: #2ecc71;"></div>
+                <div class="tower-name">Rapid</div>
                 <div class="tower-cost">$35</div>
             </div>
             <button id="startCombat" class="start-button">Start Combat</button>