diff --git a/packages/fiori/cypress/specs/ShellBar.cy.tsx b/packages/fiori/cypress/specs/ShellBar.cy.tsx index e5e019ace4e5..3a242d3f09f7 100644 --- a/packages/fiori/cypress/specs/ShellBar.cy.tsx +++ b/packages/fiori/cypress/specs/ShellBar.cy.tsx @@ -1846,4 +1846,17 @@ describe("Component Behavior", () => { expect(cursor).to.equal("pointer"); }); }); +}); + +describe("Start button spacing", () => { + it("8px gap between multiple startButton elements", () => { + cy.mount( + + + + + ); + + cy.get("[ui5-shellbar]").shadow().find(".ui5-shellbar-start-button").should("have.css", "gap", "8px"); + }); }); \ No newline at end of file diff --git a/packages/fiori/src/themes/ShellBar.css b/packages/fiori/src/themes/ShellBar.css index 1f3decaf1a72..b756ccd84648 100644 --- a/packages/fiori/src/themes/ShellBar.css +++ b/packages/fiori/src/themes/ShellBar.css @@ -126,6 +126,7 @@ flex-shrink: 0; display: flex; align-items: center; + gap: 0.5rem; } .ui5-shellbar-branding-area {