Skip to content

Commit 3114734

Browse files
committed
Fix: Add the consistent border color for outputbox while selecting
Signed-off-by: jagpreetrahi <jagpreet1615@gmail.com>
1 parent b000c66 commit 3114734

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

site/src/components/ShapeBuilder/shapeBuilder.styles.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,12 @@ export const OutputBox = styled.div`
111111
resize: none;
112112
font-family: monospace;
113113
font-size: 0.95rem;
114+
transition : border-color 0.3s ease;
115+
116+
&:focus {
117+
outline:none;
118+
border: 1px solid ${({ theme }) => theme.primary || "#009684"};
119+
}
114120
}
115121
116122
.error {

0 commit comments

Comments
 (0)