Skip to content

Commit 4058432

Browse files
committed
damn alignment son
1 parent c157d8f commit 4058432

File tree

3 files changed

+11
-1
lines changed

3 files changed

+11
-1
lines changed

packages/app/src/app/components/Preview/DevTools/Console/elements.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,9 @@ export const FilterInput = styled.input`
4545
width: 6em;
4646
padding: 0.15em 0.5em;
4747
margin-right: 8px;
48+
font-family: 'Roboto';
49+
font-weight: 600;
50+
font-size: 0.875rem;
4851
4952
color: ${props => props.theme['input.foreground'] || 'white'};
5053

packages/app/src/app/components/Preview/DevTools/Console/index.js

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,13 @@ const ConsoleFilterSelect = props => {
248248

249249
return (
250250
<Select
251-
style={{ ...props.style, borderColor: '#2c2e30' }}
251+
css={`
252+
font-family: 'Roboto';
253+
font-weight: 600;
254+
font-size: 0.875rem;
255+
height: 22px;
256+
`}
257+
style={props.style}
252258
onChange={handleOnChange}
253259
>
254260
<option value="all">All</option>

packages/app/src/app/components/Preview/DevTools/index.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -414,6 +414,7 @@ export default class DevTools extends React.PureComponent<Props, State> {
414414
<MinimizeIcon
415415
onMouseDown={hidden ? undefined : this.handleMinimizeClick}
416416
style={{
417+
marginTop: hidden ? 0 : 4,
417418
transform: hidden ? `rotateZ(0deg)` : `rotateZ(180deg)`,
418419
}}
419420
/>

0 commit comments

Comments
 (0)