feat: styled button a bit
This commit is contained in:
parent
e1578a1302
commit
454633720b
1 changed files with 11 additions and 1 deletions
|
@ -7,7 +7,7 @@
|
||||||
<div id="message-box">
|
<div id="message-box">
|
||||||
<form id="message-form" @submit="sendMessage">
|
<form id="message-form" @submit="sendMessage">
|
||||||
<input v-model="messageInput" type="text" name="message-input" id="message-box-input" autocomplete="off">
|
<input v-model="messageInput" type="text" name="message-input" id="message-box-input" autocomplete="off">
|
||||||
<button type="submit">
|
<button id="submit-button" type="submit">
|
||||||
<Icon name="lucide:send" />
|
<Icon name="lucide:send" />
|
||||||
</button>
|
</button>
|
||||||
</form>
|
</form>
|
||||||
|
@ -139,4 +139,14 @@ onMounted(async () => {
|
||||||
gap: 1dvh;
|
gap: 1dvh;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#submit-button {
|
||||||
|
background-color: inherit;
|
||||||
|
border: none;
|
||||||
|
color: white;
|
||||||
|
}
|
||||||
|
|
||||||
|
#submit-button:hover {
|
||||||
|
background-color: rgb(40, 40, 40);
|
||||||
|
}
|
||||||
|
|
||||||
</style>
|
</style>
|
Loading…
Add table
Add a link
Reference in a new issue