Skip to content

Commit bd6768b

Browse files
author
Ives van Hoorne
committed
Make actual url black
1 parent 1870896 commit bd6768b

File tree

1 file changed

+2
-5
lines changed
  • src/app/pages/SandboxView/Editor/Content/View/subviews/Preview

1 file changed

+2
-5
lines changed

src/app/pages/SandboxView/Editor/Content/View/subviews/Preview/AddressBar.js

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,15 @@
11
import React from 'react';
22
import styled from 'styled-components';
3-
import theme from '../../../../../../../../common/theme';
4-
5-
const TEXT_COLOR = theme.gray.darken(0.2)();
63

74
const Container = styled.div`
85
position: relative;
9-
color: ${TEXT_COLOR};
6+
color: ${props => props.theme.gray.darken(0.2)()};
107
vertical-align: middle;
118
`;
129

1310
const Input = styled.input`
1411
padding: 0.2rem 1rem;
15-
color: ${TEXT_COLOR};
12+
color: black;
1613
width: 100%;
1714
box-sizing: border-box;
1815
`;

0 commit comments

Comments
 (0)