Преглед изворни кода

fix(web): Reduce QR code size to 100px (from 180px)

Xiaogang Liao пре 2 месеци
родитељ
комит
babc2bd788
1 измењених фајлова са 17 додато и 0 уклоњено
  1. 17 0
      web/css/style.css

+ 17 - 0
web/css/style.css

@@ -1466,6 +1466,23 @@ ul { list-style: none; }
   font-size: var(--font-size-tiny);
 }
 
+.contact-qr img {
+  width: 100px;
+  height: auto;
+  border-radius: var(--radius-md);
+}
+.contact-qr span {
+  display: block;
+  margin-top: var(--space-sm);
+  font-size: var(--font-size-tiny);
+  color: var(--color-text-muted);
+}
+@media (max-width: 768px) {
+  .contact-qr img {
+    width: 80px;
+  }
+}
+
 /* Testimonials Section */
 .section-testimonials { background: var(--bg-section-alt); }
 .testimonials-grid {