diff --git a/src/lib/assets/css/terminal-tui.css b/src/lib/assets/css/terminal-tui.css
index 2ba5f65..850eb19 100644
--- a/src/lib/assets/css/terminal-tui.css
+++ b/src/lib/assets/css/terminal-tui.css
@@ -2,15 +2,15 @@
font-family: 'JetBrains Mono', 'Fira Code', 'Consolas', monospace;
background: var(--terminal-bg);
border: 2px solid var(--terminal-border);
- border-radius: 8px;
+ border-radius: 0;
overflow: hidden;
position: relative;
display: flex;
flex-direction: column;
width: 100%;
margin: 0 auto;
- height: calc(100vh - var(--navbar-height) - 65px);
- max-height: calc(100vh - var(--navbar-height) - 65px);
+ height: calc(100vh - var(--navbar-height));
+ max-height: calc(100vh - var(--navbar-height));
animation: tuiFadeIn 0.4s ease-out;
}
@@ -33,7 +33,7 @@
.tui-border-glow {
position: absolute;
inset: -2px;
- border-radius: 10px;
+ border-radius: 0;
background: linear-gradient(
45deg,
var(--terminal-primary),
@@ -66,8 +66,8 @@
/* Responsive */
@media (max-width: 768px) {
.tui-terminal {
- width: 95%;
- height: calc(100vh - var(--navbar-height) - 60px);
- max-height: calc(100vh - var(--navbar-height) - 60px);
+ width: 100%;
+ height: calc(100vh - var(--navbar-height));
+ max-height: calc(100vh - var(--navbar-height));
}
}
diff --git a/src/routes/+page.svelte b/src/routes/+page.svelte
index 359c1d0..0bfab2c 100644
--- a/src/routes/+page.svelte
+++ b/src/routes/+page.svelte
@@ -20,7 +20,7 @@
diff --git a/src/routes/about/+page.svelte b/src/routes/about/+page.svelte
index 1000bc5..e6b8062 100644
--- a/src/routes/about/+page.svelte
+++ b/src/routes/about/+page.svelte
@@ -209,7 +209,7 @@
diff --git a/src/routes/components/+page.svelte b/src/routes/components/+page.svelte
index e38bf07..e5f34a6 100644
--- a/src/routes/components/+page.svelte
+++ b/src/routes/components/+page.svelte
@@ -20,7 +20,7 @@
diff --git a/src/routes/portfolio/+page.svelte b/src/routes/portfolio/+page.svelte
index 21955c6..5a01189 100644
--- a/src/routes/portfolio/+page.svelte
+++ b/src/routes/portfolio/+page.svelte
@@ -19,7 +19,7 @@
diff --git a/src/routes/projects/+page.svelte b/src/routes/projects/+page.svelte
index 0343289..ac49a90 100644
--- a/src/routes/projects/+page.svelte
+++ b/src/routes/projects/+page.svelte
@@ -19,7 +19,7 @@