So I am working on a POS extension app. Yesterday everything looked like it’s supposed to (like the screenshots in the POS documentation). This morning some UI changed a little bit.
For example the section component with a header, the header had a separator and some padding under but now it’s flush with the content without a separator. Also secondary buttons had a blue text, now it’s white.
So this morning it looks like that:
I wish I had a screenshot of what it looked like yesterday. But here’s what the section component should look like according to the doc (which is what I was seeing yesterday):
And for secondary buttons:
I do think the secondary buttons look better with the white text, but it’s hard to make UI decisions if things just suddenly changes ![]()
For reference this is a simplified version of the code:
<s-section heading={i18n.translate('list_filters_heading')}>
<s-stack direction="inline" gap="small">
<s-button variant="secondary" onClick={handleClick}>
My button
</s-button>
</s-stack>
</s-section>


