mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-13 04:48:53 +00:00
fix: tab label overflow style when there is only one tab (#7665)
before  after 
This commit is contained in:
@@ -125,8 +125,8 @@ const WorkbenchTab = ({
|
||||
</Fragment>
|
||||
);
|
||||
})}
|
||||
{!workbench.pinned && tabsLength > 1 ? (
|
||||
<div className={styles.tabCloseButtonWrapper}>
|
||||
<div className={styles.tabCloseButtonWrapper}>
|
||||
{!workbench.pinned && tabsLength > 1 ? (
|
||||
<button
|
||||
data-testid="close-tab-button"
|
||||
className={styles.tabCloseButton}
|
||||
@@ -134,8 +134,8 @@ const WorkbenchTab = ({
|
||||
>
|
||||
<CloseIcon />
|
||||
</button>
|
||||
</div>
|
||||
) : null}
|
||||
) : null}
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
@@ -148,7 +148,7 @@ export const tabCloseButtonWrapper = style({
|
||||
paddingRight: 4,
|
||||
justifyContent: 'flex-end',
|
||||
selectors: {
|
||||
[`${tab}:is([data-active=true], :hover) &`]: {
|
||||
[`${tab}:is([data-active=true], :hover) &:not(:empty)`]: {
|
||||
width: 40,
|
||||
},
|
||||
[`${tab}[data-active=true] &`]: {
|
||||
|
||||
Reference in New Issue
Block a user