Major changes: - Shift from "OpenFang desktop client" to "independent AI Agent desktop app" - Add decision principle: "Is this useful for ZCLAW? Does it affect ZCLAW?" - Simplify project structure and tech stack sections - Replace OpenClaw vs OpenFang comparison with unified backend approach - Consolidate troubleshooting from scattered sections into organized FAQ - Update Hands system documentation with 8 capabilities and status - Stream
48 lines
792 B
CSS
48 lines
792 B
CSS
/* ZCLAW Desktop App - Minimal Legacy Styles */
|
|
/* Most styling is handled by Tailwind CSS and index.css design system */
|
|
|
|
/* Vite Logo Animation - Keep for any Vite default pages */
|
|
.logo.vite:hover {
|
|
filter: drop-shadow(0 0 2em #747bff);
|
|
}
|
|
|
|
.logo.react:hover {
|
|
filter: drop-shadow(0 0 2em #61dafb);
|
|
}
|
|
|
|
/* Container utilities */
|
|
.container {
|
|
margin: 0;
|
|
padding-top: 10vh;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
text-align: center;
|
|
}
|
|
|
|
.logo {
|
|
height: 6em;
|
|
padding: 1.5em;
|
|
will-change: filter;
|
|
transition: 0.75s;
|
|
}
|
|
|
|
.logo.tauri:hover {
|
|
filter: drop-shadow(0 0 2em #24c8db);
|
|
}
|
|
|
|
.row {
|
|
display: flex;
|
|
justify-content: center;
|
|
}
|
|
|
|
/* Typography */
|
|
h1 {
|
|
text-align: center;
|
|
}
|
|
|
|
/* Greet input utility */
|
|
#greet-input {
|
|
margin-right: 5px;
|
|
}
|