We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ffb8479 commit b6497a3Copy full SHA for b6497a3
1 file changed
styles.css
@@ -1505,4 +1505,28 @@ body {
1505
/* Contact Info specific social alignment */
1506
.contact-info-card .social-links {
1507
justify-content: flex-start;
1508
-}
+}
1509
+
1510
1511
+// chatbot
1512
+.floating-icon {
1513
+ position: fixed;
1514
+ bottom: 20px; /* distance from bottom */
1515
+ left: 50%; /* move to horizontal center */
1516
+ transform: translateX(-50%); /* perfect centering */
1517
1518
+ width: 60px;
1519
+ height: 60px;
1520
1521
+ background: #000;
1522
+ color: #fff;
1523
1524
+ display: flex;
1525
+ align-items: center;
1526
+ justify-content: center;
1527
1528
+ border-radius: 50%;
1529
+ cursor: pointer;
1530
1531
+ z-index: 9999; /* stays above other elements */
1532
0 commit comments