Place sticky icons at the far right end of the labelContainer
This commit is contained in:
parent
cd26901f3d
commit
fee4667e32
@ -6,17 +6,17 @@ export class LabelContainer extends HTMLDivElement {
|
||||
|
||||
constructor() {
|
||||
super();
|
||||
this.className = "d-flex";
|
||||
this.className = "d-flex justify-content-between";
|
||||
|
||||
this.label = document.createElement("span");
|
||||
this.label.className = "fieldname";
|
||||
this.appendChild(this.label);
|
||||
|
||||
this.sticky = document.createElement("span");
|
||||
this.sticky.className = "bi me-1 sticky-icon";
|
||||
this.sticky.hidden = true;
|
||||
this.appendChild(this.sticky);
|
||||
|
||||
this.label = document.createElement("span");
|
||||
this.label.className = "fieldname";
|
||||
this.appendChild(this.label);
|
||||
|
||||
this.toggleSticky = this.toggleSticky.bind(this);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user