Skip to content

Commit 4bf503a

Browse files
committed
chore: remove font-style italic from title
1 parent ca681e9 commit 4bf503a

File tree

2 files changed

+1
-5
lines changed

2 files changed

+1
-5
lines changed

example/src/index.js

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,6 @@ import { AUTH_REMOVE_TOKEN, AUTH_SET_TOKEN } from 'constants/auth';
1515
const logger = createLogger({
1616
predicate: (getState, action) => action.type !== AUTH_REMOVE_TOKEN, // log all actions except AUTH_REMOVE_TOKEN
1717
duration: true,
18-
colors: {
19-
...defaults.colors,
20-
action: ({ type }) => type === AUTH_SET_TOKEN && `green`,
21-
},
2218
});
2319

2420
const reducer = combineReducers(reducers);

src/core.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ export function printBuffer(buffer, options) {
6969
const headerCSS = [`color: gray; font-weight: lighter;`];
7070
headerCSS.push(titleCSS);
7171
if (options.timestamp) headerCSS.push(`color: gray; font-weight: lighter;`);
72-
if (options.duration) headerCSS.push(`font-style: italic; color: gray; font-weight: lighter;`);
72+
if (options.duration) headerCSS.push(`color: gray; font-weight: lighter;`);
7373
const title = titleFormatter(formattedAction, formattedTime, took);
7474

7575
// Render

0 commit comments

Comments
 (0)