Skip to content

Commit

Permalink
Change selector to absolute
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremyist committed Nov 3, 2023
1 parent 5693e11 commit e10bcac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/languageselector/LanguageSelector.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ export class LanguageSelector extends React.Component<LanguageSelectorProps> {

return (
<div className={containerClasses}>
<div style={{ position: 'fixed', right: '2em', marginTop: '2em', zIndex: 1 }}>
<div style={{ position: 'absolute', right: '2em', marginTop: '2em', zIndex: 1 }}>
{languages.map((lang: Asset, idx: number) => {
return (
<div key={'lang_' + lang.id} className={styles.language}>
Expand Down

0 comments on commit e10bcac

Please sign in to comment.