remove top margin in result view

This commit is contained in:
2022-11-18 01:40:16 +01:00
parent aad9dd3482
commit c9a08bbf56

View File

@@ -17,7 +17,7 @@ export default defineComponent({
}); });
</script> </script>
<style scoped> <style lang="scss" scoped>
.result-code { .result-code {
overflow-x: auto; overflow-x: auto;
overflow-y: auto; overflow-y: auto;
@@ -28,6 +28,10 @@ export default defineComponent({
font-family: monospace; font-family: monospace;
white-space: pre; white-space: pre;
line-height: normal; line-height: normal;
pre {
margin-top: 0;
}
} }
</style> </style>