1
0
resumarkdown/src/lib/components/code-input.svelte
Nicola Clark 2f2bac9351
add code input component
this involved some refactoring of styles
2024-10-11 22:16:42 -05:00

12 lines
245 B
Svelte

<textarea></textarea>
<style lang="less">
textarea {
box-sizing: border-box;
height: .full-without-padding(@padding-lg-y) [];
margin: @padding-lg;
resize: none;
width: .full-without-padding(@padding-lg-x) [];
}
</style>