Skip to content

Commit

Permalink
Fixes after review
Browse files Browse the repository at this point in the history
  • Loading branch information
lex111 committed Aug 30, 2021
1 parent 760f4ab commit 8fa7bbd
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ function AnnouncementBar(): JSX.Element | null {
{isCloseable ? (
<button
type="button"
className={clsx(styles.announcementBarClose, 'close clean-btn')}
className={clsx('clean-btn close', styles.announcementBarClose)}
onClick={close}
aria-label={translate({
id: 'theme.AnnouncementBar.closeButtonAriaLabel',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,10 @@ html[data-announcement-bar-initially-dismissed='true'] .announcementBar {
display: none;
}

.announcementBarPlaceholder,
.announcementBarPlaceholder {
flex: 0 0 10px;
}

.announcementBarClose {
flex: 0 0 30px;
}
Expand Down

0 comments on commit 8fa7bbd

Please sign in to comment.