blob: 68c5c3b8ce7795509ccdde7e4f248ef975c20849 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
<script lang="ts">
import PlayerLog from "./PlayerLog.svelte";
export let matchLog: string;
</script>
<div class="output-pane">
<h3 class="output-header">Player log</h3>
<PlayerLog {matchLog} playerId={1} />
</div>
<style lang="scss">
.output-pane {
width: 100%;
overflow-y: scroll;
background-color: rgb(41, 41, 41);
padding: 15px;
}
.output-header {
color: #eee;
padding-bottom: 20px;
}
</style>
|