new featuregit status dark mode
This commit is contained in:
parent
9646d716c6
commit
6efc27453e
14 changed files with 189 additions and 149 deletions
|
|
@ -5,6 +5,6 @@
|
|||
}
|
||||
|
||||
.bottom {
|
||||
border-top: 1px lightgrey solid;
|
||||
background-color: rgb(255, 249, 235);
|
||||
}
|
||||
border-top: 1px var(--separator-color) solid;
|
||||
background-color: var(--bottom-panel-bg-color);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -3,14 +3,14 @@ import { TraceableError } from "../../statecharts/parser";
|
|||
|
||||
import "./BottomPanel.css";
|
||||
|
||||
import logo from "../../../artwork/logo-playful.svg";
|
||||
import { PersistentDetailsLocalStorage } from "../PersistentDetails";
|
||||
import { Logo } from "@/Logo/Logo";
|
||||
|
||||
export function BottomPanel(props: {errors: TraceableError[]}) {
|
||||
const [greeting, setGreeting] = useState(
|
||||
<div style={{textAlign:'center'}}>
|
||||
<span style={{fontSize: 18, fontStyle: 'italic'}}>
|
||||
Welcome to <img src={logo} style={{maxWidth:'100%'}}/>
|
||||
Welcome to <Logo/>
|
||||
</span>
|
||||
</div>);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue