Skip to content

Commit

Permalink
Merge branch 'latest' into delete-most-watched-data
Browse files Browse the repository at this point in the history
  • Loading branch information
karinathomasbbc authored Nov 14, 2024
2 parents 2b04db3 + 0a3c774 commit 2d2f655
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 1 deletion.
Binary file not shown.
Binary file added .yarn/cache/fsevents-patch-6b67494872-10.zip
Binary file not shown.
8 changes: 7 additions & 1 deletion ws-nextjs-app/pages/[service]/live/[id]/Header/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,13 @@ const Header = ({
: styles.textContainerWithoutImage
}
>
<Heading size="trafalgar" level={1} id="content" tabIndex={-1}>
<Heading
size="trafalgar"
level={1}
id="content"
tabIndex={-1}
css={styles.heading}
>
{showLiveLabel ? (
<LiveLabelHeader isHeaderImage={isHeaderImage}>
{Title}
Expand Down
6 changes: 6 additions & 0 deletions ws-nextjs-app/pages/[service]/live/[id]/Header/styles.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,12 @@ export default {
borderBottom: `solid ${pixelsToRem(1)}rem transparent`,
},
}),
heading: () =>
css({
'&:focus': {
outline: 'none',
},
}),
backgroundContainer: () =>
css({
position: 'absolute',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,10 @@ exports[`Live Page creates snapshot of the live page 1`] = `
}
}
.emotion-5:focus {
outline: none;
}
.emotion-6 {
display: block;
color: #FEFEFE;
Expand Down

0 comments on commit 2d2f655

Please sign in to comment.