This commit is contained in:
Oliver
2025-07-24 20:05:23 -03:00
parent 70d627f17b
commit 92575c040f
3 changed files with 20 additions and 4 deletions

View File

@@ -56,7 +56,7 @@ If its not the right fit, no worries — well refund you 💸.
function appendMessage(text, sender) { function appendMessage(text, sender) {
const msg = document.createElement('div'); const msg = document.createElement('div');
msg.classList.add('mywidget-message', sender === 'user' ? 'user' : 'bot'); msg.classList.add('cw-message', sender === 'user' ? 'user' : 'bot');
msg.innerHTML = text; msg.innerHTML = text;
chatMessages.appendChild(msg); chatMessages.appendChild(msg);

View File

@@ -142,6 +142,7 @@
} }
} }
</script> </script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
</head> </head>
<body> <body>
@@ -338,7 +339,10 @@
</section> </section>
<footer> <footer>
<p>© 2025 OD8N. All Rights Reserved.</p> <p>For ODOO and N8N tips and tricks and news follow us on
<a href="https://www.linkedin.com/company/od8n" target="_blank" aria-label="LinkedIn"><i class="fab fa-linkedin"></i></a>
</p>
<p>© 2025 OD8N. All Rights Reserved. Service provided by ASC Consultatores Paraguay</p>
</footer> </footer>
<script defer src="./app.js"></script> <script defer src="./app.js"></script>

View File

@@ -243,6 +243,18 @@ footer {
color: #fff; color: #fff;
font-size: 0.9rem; font-size: 0.9rem;
} }
footer a {
color: #fff;
margin: 0 5px;
font-size: 1.2rem;
text-decoration: none;
}
footer a:hover {
color: #0070c0;
}
.hero-list { .hero-list {
list-style: none; list-style: none;
text-align: left; text-align: left;
@@ -408,13 +420,13 @@ footer {
white-space: pre-wrap; white-space: pre-wrap;
} }
.cw-message.user { .cw-message.user {
background-color: #eaf4ff; background-color: #DCF8C6;
color: #333; color: #333;
margin-left: auto; margin-left: auto;
text-align: right; text-align: right;
} }
.cw-message.bot { .cw-message.bot {
background-color: #f5f5f5; background-color: #E0E0E0;
color: #333; color: #333;
margin-right: auto; margin-right: auto;
text-align: left; text-align: left;