Update homepage appearing over everything and terminal incorrect bg
This commit is contained in:
@@ -86,8 +86,7 @@
|
|||||||
--color-sidebar-accent-foreground: var(--sidebar-accent-foreground);
|
--color-sidebar-accent-foreground: var(--sidebar-accent-foreground);
|
||||||
--color-sidebar-border: var(--sidebar-border);
|
--color-sidebar-border: var(--sidebar-border);
|
||||||
--color-sidebar-ring: var(--sidebar-ring);
|
--color-sidebar-ring: var(--sidebar-ring);
|
||||||
|
|
||||||
/* Custom dark theme colors - exact hex matches */
|
|
||||||
--color-dark-bg: #18181b;
|
--color-dark-bg: #18181b;
|
||||||
--color-dark-bg-darker: #0e0e10;
|
--color-dark-bg-darker: #0e0e10;
|
||||||
--color-dark-bg-darkest: #09090b;
|
--color-dark-bg-darkest: #09090b;
|
||||||
|
|||||||
@@ -323,7 +323,7 @@ export const Terminal = forwardRef<any, SSHTerminalProps>(function SSHTerminal(
|
|||||||
scrollback: 10000,
|
scrollback: 10000,
|
||||||
fontSize: 14,
|
fontSize: 14,
|
||||||
fontFamily: '"JetBrains Mono Nerd Font", "MesloLGS NF", "FiraCode Nerd Font", "Cascadia Code", "JetBrains Mono", Consolas, "Courier New", monospace',
|
fontFamily: '"JetBrains Mono Nerd Font", "MesloLGS NF", "FiraCode Nerd Font", "Cascadia Code", "JetBrains Mono", Consolas, "Courier New", monospace',
|
||||||
theme: {background: 'var(--color-dark-bg)', foreground: '#f7f7f7'},
|
theme: {background: '#18181b', foreground: '#f7f7f7'},
|
||||||
allowTransparency: true,
|
allowTransparency: true,
|
||||||
convertEol: true,
|
convertEol: true,
|
||||||
windowsMode: false,
|
windowsMode: false,
|
||||||
|
|||||||
@@ -81,7 +81,7 @@ export function Homepage({
|
|||||||
style={{ paddingTop: `${topPadding}px` }}>
|
style={{ paddingTop: `${topPadding}px` }}>
|
||||||
{!loggedIn ? (
|
{!loggedIn ? (
|
||||||
<div
|
<div
|
||||||
className="absolute left-0 w-full flex items-center justify-center transition-all duration-300 ease-in-out"
|
className="absolute left-0 w-full flex items-center justify-center"
|
||||||
style={{
|
style={{
|
||||||
top: `${topOffset}px`,
|
top: `${topOffset}px`,
|
||||||
height: `calc(100% - ${topOffset}px)`
|
height: `calc(100% - ${topOffset}px)`
|
||||||
@@ -100,7 +100,7 @@ export function Homepage({
|
|||||||
</div>
|
</div>
|
||||||
) : (
|
) : (
|
||||||
<div
|
<div
|
||||||
className="absolute left-0 w-full flex items-center justify-center transition-all duration-300 ease-in-out"
|
className="absolute left-0 w-full flex items-center justify-center"
|
||||||
style={{
|
style={{
|
||||||
top: `${topOffset}px`,
|
top: `${topOffset}px`,
|
||||||
height: `calc(100% - ${topOffset}px)`
|
height: `calc(100% - ${topOffset}px)`
|
||||||
|
|||||||
Reference in New Issue
Block a user