Skip to content

Commit

Permalink
Increase space between tab name and count icon (#690)
Browse files Browse the repository at this point in the history
* add gap between tab names and counter

* make gap larger
  • Loading branch information
wow-such-code authored Jul 5, 2024
1 parent e6b6b0a commit e028e64
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -196,6 +196,10 @@
white-space: nowrap;
}

.tab-with-count {
gap: var(--lumo-space-s);
}

.ontology-lookup-component {
display: flex;
flex-direction: column;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -625,6 +625,7 @@ public MeasurementTechnologyTab(String technology, int measurementCount) {
this.add(technologyNameComponent, sampleCountComponent);
setTechnologyName(technology);
setMeasurementCount(measurementCount);
addClassName("tab-with-count");
}

public String getTabLabel() {
Expand Down

0 comments on commit e028e64

Please sign in to comment.