Skip to content

Commit

Permalink
Merge branch 'main' into feat/upgrade-to-tauri-v2
Browse files Browse the repository at this point in the history
  • Loading branch information
thewh1teagle committed Oct 3, 2024
2 parents 18459e8 + db8f58b commit 7e688ca
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion desktop/src/components/HtmlView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ export default function HTMLView({ segments, file, preference }: HTMLViewProps)
<div style={{ marginBottom: '10px' }}>
<div
className="timestamp"
style={{ fontSize: '12px', paddingBottom: '6px', color: preference.theme === 'dark' ? '#3B4045' : '#000000' }}>
style={{ fontSize: '13px', paddingBottom: '6px', color: preference.theme === 'dark' ? '#ffffff' : '#000000', opacity: '75%' }}>
{formatDuration(segment.start, segment.stop)}
</div>
{segment.speaker ? formatSpeaker(segment.speaker, t('common.speaker-prefix')) : ''}
Expand Down
2 changes: 1 addition & 1 deletion desktop/src/components/InfoTooltip.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { ReactComponent as InfoIcon } from '~/icons/info.svg'

export function InfoTooltip({ text }: { text: string }) {
return (
<div className="tooltip" data-tip={text}>
<div className="tooltip tooltip-primary" data-tip={text}>
<InfoIcon className="w-5 h-5" data-tooltip-place="top" />
</div>
)
Expand Down

0 comments on commit 7e688ca

Please sign in to comment.