Skip to content

Commit 53f2b55

Browse files
committed
style: Adjust UI colors and button styling for consistency
1 parent 72741a4 commit 53f2b55

File tree

2 files changed

+16
-2
lines changed

2 files changed

+16
-2
lines changed

ui/assets/main.css

+15-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ html, body {
1919
}
2020
.logo-container {
2121
padding: 1rem;
22-
background-color: #ffffff;
22+
background-color: #f8f9fa;
2323
text-align: left;
2424
}
2525
.logo {
@@ -385,6 +385,12 @@ button[type="submit"]:hover {
385385
animation: fadeIn 0.5s ease-in-out;
386386
}
387387

388+
.welcome-message img {
389+
background-color: #f8f9fa;
390+
border-radius: 50%;
391+
padding: 10px;
392+
}
393+
388394
.welcome-message img {
389395
width: 120px;
390396
margin-bottom: 2rem;
@@ -409,6 +415,14 @@ button[type="submit"]:hover {
409415
gap: 10px;
410416
margin-top: 1rem;
411417
}
418+
419+
.welcome-actions .button.is-info {
420+
background-color: #0265e7;
421+
}
422+
423+
.welcome-actions .button.is-info:hover {
424+
background-color: #0255c7;
425+
}
412426
/* Connection status styles */
413427
.connection-status {
414428
position: fixed;

ui/src/components/conversation.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ pub fn Conversation() -> Element {
214214
// Add action buttons directly in the welcome screen
215215
div { class: "welcome-actions",
216216
button {
217-
class: "button is-primary mr-2",
217+
class: "button is-info mr-2",
218218
onclick: move |_| {
219219
CREATE_ROOM_MODAL.write().show = true;
220220
},

0 commit comments

Comments
 (0)