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

@@ -5,6 +5,7 @@ const Wrapper = styled.div`
width: 100%;
border-collapse: collapse;
font-weight: 600;
table-layout: fixed;
thead,
td {
@@ -18,6 +19,14 @@ const Wrapper = styled.div`
}
td {
padding: 6px 10px;
&:nth-child(1) {
width: 30%;
}
&:nth-child(3) {
width: 70px;
}
}
}