1
0
mirror of https://github.com/mifi/lossless-cut.git synced 2024-11-22 02:12:30 +01:00

fix <code> bug

This commit is contained in:
Mikael Finstad 2023-03-11 18:11:11 +08:00
parent ee29958d55
commit 8c729cd439
No known key found for this signature in database
GPG Key ID: 25AB36E3E81CBC26
2 changed files with 3 additions and 3 deletions

View File

@ -203,12 +203,12 @@ const Settings = memo(({
{keyframeCut ? (
<>
{t('Cut at the nearest keyframe (not accurate time.) Equiv to')}:<br />
<code>ffmpeg -ss -i ...</code>
<code className="highlighted">ffmpeg -ss -i ...</code>
</>
) : (
<>
{t('Accurate time but could leave an empty portion at the beginning of the video. Equiv to')}:<br />
<code>ffmpeg -i -ss ...</code>
<code className="highlighted">ffmpeg -i -ss ...</code>
</>
)}
</div>

View File

@ -49,7 +49,7 @@ kbd {
box-shadow: inset 0 -1px 0 var(--gray8);
}
code {
code.highlighted {
background-color: var(--gray4);
border-radius: .2em;
}