mirror of
https://github.com/garraflavatra/rolens.git
synced 2025-01-19 05:27:57 +00:00
28 lines
416 B
Svelte
28 lines
416 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;
|
|
background-color: rgba(255, 255, 255, 0.7);
|
|
}
|
|
|
|
strong {
|
|
display: inline-block;
|
|
margin-right: 1rem;
|
|
font-weight: 700;
|
|
}
|
|
|
|
code {
|
|
user-select: all;
|
|
}
|
|
</style>
|