mirror of
https://github.com/PaddiM8/kalker.git
synced 2025-03-06 01:01:12 +01:00
21 lines
320 B
Svelte
21 lines
320 B
Svelte
<script lang="ts">
|
|
export let byuser = false;
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
p {
|
|
margin-top: 0;
|
|
margin-bottom: 5px;
|
|
word-wrap: break-word;
|
|
}
|
|
|
|
.result {
|
|
margin-bottom: 10px;
|
|
}
|
|
</style>
|
|
|
|
<svelte:options tag="console-line" />
|
|
<p class:result={!byuser}>
|
|
<slot />
|
|
</p>
|