pull/1509/head
Mikael Finstad 2023-03-11 18:11:11 +08:00
rodzic ee29958d55
commit 8c729cd439
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 25AB36E3E81CBC26
2 zmienionych plików z 3 dodań i 3 usunięć

Wyświetl plik

@ -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>

Wyświetl plik

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