Skip to content

Commit f350e36

Browse files
committed
Small design tweaks
1 parent 2d18dc3 commit f350e36

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@webscopeio/react-console",
3-
"version": "1.0.3",
3+
"version": "1.0.4",
44
"description": "React component that emulates console behaviour",
55
"author": "jvorcak",
66
"license": "MIT",

src/styles.css

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
background-color: black;
77
color: white;
88
font-family: monospace;
9-
font-size: 13px;
9+
font-size: 12px;
1010
padding: 10px;
1111
height: 300px;
1212
overflow-y: auto;
@@ -17,9 +17,12 @@
1717
}
1818

1919
.line {
20-
font-size: 13px;
21-
line-height: 13px;
20+
font-size: 12px;
21+
line-height: 12px;
22+
font-family: monospace;
2223
background: transparent !important; /* we want to make this transparent whatever happens in the app*/
24+
padding: 0;
25+
color: white;
2326
}
2427

2528
.input {

0 commit comments

Comments
 (0)