fix: fixed env var issues

This commit is contained in:
Anoop M D
2023-01-29 14:17:01 +05:30
parent 050ee2680f
commit cc261326fc
4 changed files with 27 additions and 13 deletions

View File

@@ -4,6 +4,16 @@ const StyledWrapper = styled.div`
.variable-name {
color: ${(props) => props.theme.variables.name.color};
}
.variable-name{
width:100px;
}
.variable-value {
max-width: 500px;
inline-size: 500px;
overflow-wrap: break-word;
}
`
export default StyledWrapper;