Skip to content
This repository was archived by the owner on May 21, 2019. It is now read-only.

Commit 1ca27d8

Browse files
authored
Merge pull request #1302 from ghosind/master
Fix bug and linter.
2 parents 18ef2d4 + 4da38fe commit 1ca27d8

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

src/views/OutputComponent.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ const CharGroupComponent = ({group}: {group: Char[]}) => {
1111
return (
1212
<span
1313
className="char-group"
14-
style={css.charGroup(attributes)}>
14+
style={attributes && css.charGroup(attributes)}>
1515
{group.map(char => char.value).join("")}
1616
</span>
1717
);

src/views/index.html

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,13 @@
77
<style>
88
@import url('https://fonts.googleapis.com/css?family=Ubuntu+Mono:400,400i,700');
99
::selection {
10-
background: rgba(255, 255, 125, 0.99) color:#032764;
10+
background: rgba(255, 255, 125, 0.99);
11+
color: #032764;
1112
}
1213

1314
* ::selection {
14-
background: rgba(255, 255, 125, 0.99) color:#032764;
15+
background: rgba(255, 255, 125, 0.99);
16+
color: #032764;
1517
}
1618

1719
* {
@@ -24,6 +26,7 @@
2426

2527
html {
2628
-webkit-backface-visibility: hidden;
29+
backface-visibility: hidden;
2730
}
2831

2932
body {
@@ -145,6 +148,7 @@
145148
-webkit-margin-after: 0;
146149
-webkit-padding-start: 0;
147150
-webkit-user-select: none;
151+
user-select: none;
148152
list-style: none;
149153
padding-left: 68px;
150154
padding-right: 129px;

0 commit comments

Comments
 (0)