feat: bg color change

This commit is contained in:
karishmas6
2024-10-19 00:57:28 +05:30
parent 00fe916119
commit 591913daa7
3 changed files with 3 additions and 3 deletions

View File

@@ -77,7 +77,7 @@ const BrowserNavBar: FC<NavBarProps> = ({
};
return (
<StyledNavBar browserWidth={900}>
<StyledNavBar browserWidth={1150}>
<NavBarButton
type="button"
onClick={() => {

View File

@@ -112,7 +112,7 @@ export const InterpretationLog: React.FC<InterpretationLogProps> = ({ isOpen, se
style={{
color: 'white',
position: 'fixed',
background: '#870468',
background: '#101828',
border: 'none',
padding: '30px 20px',
width: '100%',

View File

@@ -117,7 +117,7 @@ export const BrowserContent = () => {
}, [])
return (
<div style={{ background: 'red' }}>
<div style={{ background: '#101828' }}>
<BrowserTabs
tabs={tabs}
handleTabChange={handleTabChange}