diff --git a/scss/launcher.scss b/scss/launcher.scss index 3a0b0fb8..a9941bf5 100644 --- a/scss/launcher.scss +++ b/scss/launcher.scss @@ -100,6 +100,10 @@ font-size: lib.s(14); } } + + &.italic { + font-style: italic; + } } } } diff --git a/src/modules/launcher.tsx b/src/modules/launcher.tsx index b7d4c019..56343d63 100644 --- a/src/modules/launcher.tsx +++ b/src/modules/launcher.tsx @@ -142,6 +142,7 @@ const Result = ({ label, sublabel, tooltip, + italic, onClicked, onSecondaryClick, onMiddleClick, @@ -152,13 +153,14 @@ const Result = ({ label: string; sublabel?: string; tooltip?: string; + italic?: boolean; onClicked: (self: Widget.Button) => void; onSecondaryClick?: (self: Widget.Button) => void; onMiddleClick?: (self: Widget.Button) => void; onDestroy?: () => void; }) => (