chore: addressed review comments

This commit is contained in:
Anoop M D
2025-12-29 22:21:19 +05:30
parent 6e5f56dbde
commit c7795dee97
3 changed files with 3 additions and 5 deletions

View File

@@ -38,7 +38,7 @@ const InheritableSettingsInput = ({
style={{
backgroundColor: theme.input.bg,
border: `1px solid ${theme.input.border}`,
color: theme.input.text
color: theme.text
}}
>
<span>Inherit</span>
@@ -62,7 +62,7 @@ const InheritableSettingsInput = ({
style={{
backgroundColor: theme.input.bg,
border: `1px solid ${theme.input.border}`,
color: theme.input.text
color: theme.text
}}
autoComplete="off"
autoCorrect="off"

View File

@@ -1,4 +1,4 @@
import styled, { css } from 'styled-components';
import styled from 'styled-components';
const StyledWrapper = styled.div`
width: 100%;

View File

@@ -132,8 +132,6 @@ const darkTheme = {
input: {
bg: 'transparent',
border: palette.border.BORDER2,
// bg: palette.background.SURFACE1,
// border: palette.background.SURFACE1,
focusBorder: rgba(palette.accents.PRIMARY, 0.8),
placeholder: {
color: palette.text.SUBTEXT1,