Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion frontend/web/components/modals/create-feature/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -924,7 +924,7 @@ const Index = class extends Component {
tabLabelString='Segment Overrides'
tabLabel={
<Row
className={`justify-content-center ${
className={`justify-content-center align-items-center ${
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Alignment fix applied to only one of three tabs

Medium Severity

The align-items-center fix is only applied to the Segment Overrides tab Row, but the Value tab (line 850) and Settings tab (line 1679) use the identical Row + unsaved-changes badge pattern with only justify-content-center. Before this change, all three badge tabs were equally misaligned; now only Segment Overrides is corrected, creating a visible inconsistency between tabs with unsaved changes indicators.

Fix in Cursor Fix in Web

this.state.segmentsChanged
? 'pr-1'
: ''
Expand Down
8 changes: 3 additions & 5 deletions frontend/web/styles/components/_tabs.scss
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,12 @@
}
.hljs-container {
code {

padding-top: 80px;
}
.react-select {
position: absolute;
top:16px;
left:16px;
top: 16px;
left: 16px;
}
}
}
Expand Down Expand Up @@ -115,10 +114,9 @@
}
}


.tabs {
& .pill {
background-color:$pill-bg;
background-color: $pill-bg;
border-radius: $border-radius-xlg;
display: inline-block;
button,
Expand Down
Loading