Skip to content

Commit 162423e

Browse files
committed
style: update AppHeader layout and button styles
- Increased gap between items in the header for better spacing. - Added background color to buttons for improved visibility. - Changed button variant for consistency in design.
1 parent 1ff62ce commit 162423e

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

src/components/layouts/app-header.tsx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -68,12 +68,13 @@ export function AppHeader() {
6868
{componentByPage}
6969
<div className="flex-1" />
7070

71-
<div className="flex items-center gap-1">
71+
<div className="flex items-center gap-2">
7272
<Tooltip>
7373
<TooltipTrigger asChild>
7474
<Button
7575
size={"icon"}
7676
variant={"ghost"}
77+
className="bg-secondary/40"
7778
onClick={() => {
7879
appStoreMutate((state) => ({
7980
voiceChat: {
@@ -103,14 +104,13 @@ export function AppHeader() {
103104
</div>
104105
</TooltipContent>
105106
</Tooltip>
106-
<div className="h-4">
107-
<Separator orientation="vertical" />
108-
</div>
107+
109108
<Tooltip>
110109
<TooltipTrigger asChild>
111110
<Button
112111
size={"icon"}
113-
variant={"ghost"}
112+
variant={"secondary"}
113+
className="bg-secondary/40"
114114
onClick={() => {
115115
appStoreMutate((state) => ({
116116
temporaryChat: {

0 commit comments

Comments
 (0)