fix: fix overflow issues in keyval editors in the app

This commit is contained in:
Anoop M D
2023-02-01 03:06:32 +05:30
committed by Anoop M D
parent 5a78dfa210
commit 80f9e33be5
7 changed files with 61 additions and 4 deletions

View File

@@ -1,9 +1,9 @@
import styled from 'styled-components';
const StyledWrapper = styled.div`
width: 100%;
height: 30px;
overflow-y: hidden;
overflow-x: hidden;
.CodeMirror {
background: transparent;
@@ -16,6 +16,13 @@ const StyledWrapper = styled.div`
display: none !important;
}
.CodeMirror-hscrollbar {
display: none !important;
}
.CodeMirror-scrollbar-filler {
display: none !important;
}
.CodeMirror-lines {
padding: 0;
}