Skip to content

Commit 6f87670

Browse files
author
kmpm
committed
bugfixes and actually showing something
1 parent 0c7a270 commit 6f87670

File tree

4 files changed

+5
-3
lines changed

4 files changed

+5
-3
lines changed

app/index.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import document from "document";
12
import { Application } from './view'
23
import { Screen1 } from './screen1'
34
import { Screen2 } from './screen2'

app/screen1.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { View, $at } from './view'
2-
import { clock } from 'clock'
2+
import clock from 'clock'
33

44
const $ = $at( '#screen-1' );
55

resources/screen1.gui

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
<svg id="screen-1" display="none">
22
<text id="minutes">--</text>
3-
<text id="seconds">--</text>
3+
<text id="seconds" x="50">--</text>
44
</svg>

resources/styles.css

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1-
.defaultText {
1+
text {
22
font-size: 32;
33
font-family: System-Regular;
44
font-weight: regular;
55
text-length: 32;
6+
fill: white;
67
}

0 commit comments

Comments
 (0)