feat: add input placeholder text

This commit is contained in:
Cat Flynn 2025-05-01 01:00:40 +01:00
parent 88551e6b78
commit 31afce3601
2 changed files with 5 additions and 1 deletions

View File

@ -22,7 +22,7 @@
<div id="input-panel-container"> <div id="input-panel-container">
<div id="input-panel" class="rounded-rectangle"> <div id="input-panel" class="rounded-rectangle">
<input id="textbox-input" type="text" onkeydown="pressSendButton()"></input> <input id="textbox-input" type="text" onkeydown="pressSendButton()" placeholder="Veuillez demander-nous pour nous vous conseiller..."></input>
<button onclick="pressSendButton()"><i class="fa fa-arrow-right" style="font-size:2em"></i></button> <button onclick="pressSendButton()"><i class="fa fa-arrow-right" style="font-size:2em"></i></button>
</div> </div>
</div> </div>

View File

@ -226,6 +226,10 @@ li.message {
outline: none; outline: none;
} }
#input-panel input::placerholder {
color: var(--bluewhite);
}
button { button {
color: var(--vermilion); color: var(--vermilion);
background-color: #00000000; background-color: #00000000;