mirror of
https://github.com/garraflavatra/rolens.git
synced 2025-01-19 13:27:58 +00:00
28 lines
386 B
Svelte
28 lines
386 B
Svelte
|
<script>
|
||
|
export let code = '';
|
||
|
</script>
|
||
|
|
||
|
<div class="examplecode">
|
||
|
<strong>CLI command</strong>
|
||
|
<code>{code}</code>
|
||
|
</div>
|
||
|
|
||
|
<style>
|
||
|
.examplecode {
|
||
|
border: 1px solid #ccc;
|
||
|
border-radius: 10px;
|
||
|
padding: 0.5rem;
|
||
|
opacity: 0.6;
|
||
|
}
|
||
|
|
||
|
strong {
|
||
|
display: inline-block;
|
||
|
margin-right: 1rem;
|
||
|
font-weight: 700;
|
||
|
}
|
||
|
|
||
|
code {
|
||
|
user-select: all;
|
||
|
}
|
||
|
</style>
|