mirror of
https://github.com/wavetermdev/waveterm.git
synced 2025-03-11 13:23:06 +01:00
Fix wave ai styling (#1157)
This commit is contained in:
parent
94eb165346
commit
be5d73af21
@ -2,6 +2,7 @@ import clsx from "clsx";
|
|||||||
import { memo, useState } from "react";
|
import { memo, useState } from "react";
|
||||||
import { Button } from "./button";
|
import { Button } from "./button";
|
||||||
import { FlyoutMenu } from "./flyoutmenu";
|
import { FlyoutMenu } from "./flyoutmenu";
|
||||||
|
import "./menubutton.less";
|
||||||
|
|
||||||
const MenuButtonComponent = ({ items, className, text, title }: MenuButtonProps) => {
|
const MenuButtonComponent = ({ items, className, text, title }: MenuButtonProps) => {
|
||||||
const [isOpen, setIsOpen] = useState(false);
|
const [isOpen, setIsOpen] = useState(false);
|
||||||
|
@ -13,12 +13,13 @@
|
|||||||
flex-grow: 1;
|
flex-grow: 1;
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
overflow-y: auto;
|
overflow-y: auto;
|
||||||
|
min-height: 100%;
|
||||||
|
|
||||||
.chat-window {
|
.chat-window {
|
||||||
display: flex;
|
display: flex;
|
||||||
// margin-bottom: 5px;
|
// margin-bottom: 5px;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
height: 100%;
|
min-height: 100%;
|
||||||
gap: 8px;
|
gap: 8px;
|
||||||
|
|
||||||
// This is the filler that will push the chat messages to the bottom until the chat window is full
|
// This is the filler that will push the chat messages to the bottom until the chat window is full
|
||||||
|
Loading…
Reference in New Issue
Block a user