1
0
mirror of https://github.com/garraflavatra/rolens.git synced 2025-01-19 13:27:58 +00:00
rolens/frontend/src/components/code-example.svelte

28 lines
416 B
Svelte
Raw Normal View History

2023-01-10 16:28:27 +00:00
<script>
export let code = '';
</script>
<div class="examplecode">
2023-01-10 16:28:27 +00:00
<strong>CLI command</strong>
<code>{code}</code>
</div>
<style>
.examplecode {
border: 1px solid #ccc;
border-radius: 10px;
padding: 0.5rem;
2023-01-19 18:07:39 +00:00
background-color: rgba(255, 255, 255, 0.7);
2023-01-10 16:28:27 +00:00
}
strong {
display: inline-block;
margin-right: 1rem;
font-weight: 700;
}
code {
user-select: all;
}
</style>