Skip to content

Commit 2e425c7

Browse files
committed
Fix(Main): Fixed tab component height when different tabs text wrap
1 parent 271de89 commit 2e425c7

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

src/ui/csss-code/tabs/tab-group/tab-group.component.scss

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,10 @@ $selector-h: 3px;
1919
&__tab {
2020
min-width: $tab-w;
2121
width: 100%;
22+
23+
display: flex;
24+
flex-direction: column;
25+
justify-content: flex-end;
2226
}
2327

2428
&__label {

src/ui/csss-code/tabs/tab-group/tab-group.component.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,6 @@ export class CodeTabGroupComponent implements AfterViewInit, AfterContentInit {
9999

100100
/**
101101
* Changes the style of the tab selector, which makes it move to the currently active tab.
102-
*
103102
*/
104103
private setSelectorStyle(): void {
105104
const activeTab = this.activeTab();

0 commit comments

Comments
 (0)