From b2f1d03401c0427b7ef518e37571a97ba98945c9 Mon Sep 17 00:00:00 2001 From: Jon Andre Briones Date: Thu, 2 Oct 2025 18:07:49 -0700 Subject: [PATCH 1/3] fix(Fall Hacks 2025): Removed Fall Hacks 2025 registration link --- public/fall-hacks/2025/index.html | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/public/fall-hacks/2025/index.html b/public/fall-hacks/2025/index.html index d545936..e47d264 100644 --- a/public/fall-hacks/2025/index.html +++ b/public/fall-hacks/2025/index.html @@ -92,13 +92,7 @@

About

Register & Contact

From 2e425c73c3abbf60833ff0a19b74d3696efc6630 Mon Sep 17 00:00:00 2001 From: Jon Andre Briones Date: Thu, 2 Oct 2025 18:52:35 -0700 Subject: [PATCH 3/3] Fix(Main): Fixed tab component height when different tabs text wrap --- src/ui/csss-code/tabs/tab-group/tab-group.component.scss | 4 ++++ src/ui/csss-code/tabs/tab-group/tab-group.component.ts | 1 - 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/src/ui/csss-code/tabs/tab-group/tab-group.component.scss b/src/ui/csss-code/tabs/tab-group/tab-group.component.scss index f2c362c..c1906aa 100644 --- a/src/ui/csss-code/tabs/tab-group/tab-group.component.scss +++ b/src/ui/csss-code/tabs/tab-group/tab-group.component.scss @@ -19,6 +19,10 @@ $selector-h: 3px; &__tab { min-width: $tab-w; width: 100%; + + display: flex; + flex-direction: column; + justify-content: flex-end; } &__label { diff --git a/src/ui/csss-code/tabs/tab-group/tab-group.component.ts b/src/ui/csss-code/tabs/tab-group/tab-group.component.ts index 502bb10..027d326 100644 --- a/src/ui/csss-code/tabs/tab-group/tab-group.component.ts +++ b/src/ui/csss-code/tabs/tab-group/tab-group.component.ts @@ -99,7 +99,6 @@ export class CodeTabGroupComponent implements AfterViewInit, AfterContentInit { /** * Changes the style of the tab selector, which makes it move to the currently active tab. - * */ private setSelectorStyle(): void { const activeTab = this.activeTab();