changes
This commit is contained in:
@@ -56,7 +56,7 @@ If it’s not the right fit, no worries — we’ll 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);
|
||||||
|
|||||||
@@ -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>
|
||||||
|
|||||||
@@ -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;
|
||||||
|
|||||||
Reference in New Issue
Block a user