Skip to content

Commit 9806f35

Browse files
committed
Increase spacing between admonition icon and header text.
1 parent d40289d commit 9806f35

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

profiler/src/profiler/TracyMarkdown.cpp

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -176,23 +176,23 @@ class MarkdownContext
176176
{
177177
case 'n': // note
178178
color = 0xFFEB6F1F;
179-
TextColoredUnformatted( color, ICON_FA_CIRCLE_INFO " " );
179+
TextColoredUnformatted( color, ICON_FA_CIRCLE_INFO " " );
180180
break;
181181
case 't': // tip
182182
color = 0xFF368623;
183-
TextColoredUnformatted( color, ICON_FA_LIGHTBULB " " );
183+
TextColoredUnformatted( color, ICON_FA_LIGHTBULB " " );
184184
break;
185185
case 'i': // important
186186
color = 0xFFE55789;
187-
TextColoredUnformatted( color, ICON_FA_MESSAGE " " );
187+
TextColoredUnformatted( color, ICON_FA_MESSAGE " " );
188188
break;
189189
case 'w': // warning
190190
color = 0xFF036A9E;
191-
TextColoredUnformatted( color, ICON_FA_TRIANGLE_EXCLAMATION " " );
191+
TextColoredUnformatted( color, ICON_FA_TRIANGLE_EXCLAMATION " " );
192192
break;
193193
case 'c': // caution
194194
color = 0xFF3336DA;
195-
TextColoredUnformatted( color, ICON_FA_HAND " " );
195+
TextColoredUnformatted( color, ICON_FA_HAND " " );
196196
break;
197197
default:
198198
assert( false );

0 commit comments

Comments
 (0)