Skip to content

Commit 33a33af

Browse files
committed
Style tweaks
1 parent 49655c2 commit 33a33af

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

packages/app/src/app/pages/common/Modals/NetlifyLogs/elements.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,12 @@ export const List = styled.ul`
1313
padding: 1.3em;
1414
list-style: none;
1515
font-family: 'dm';
16-
background: #1b1d1f;
16+
background: ${props => props.theme.background4};
1717
max-height: 400px;
1818
overflow: auto;
19-
margin-bottom: 1.3em;
19+
margin: 1.3em 0;
2020
word-break: break-word;
21+
border-radius: 4px;
2122
`;
2223

2324
export const Item = styled.li`

packages/app/src/app/pages/common/Modals/NetlifyLogs/index.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,9 @@ class NetlifyLogs extends Component {
3535
Builds typically take a minute or two to complete
3636
</Explanation>
3737
<List>{this.state.logs.map(log => <Item key={log}>{log}</Item>)}</List>
38-
<Button onClick={() => signals.modalClosed()}>Close</Button>
38+
<Button small onClick={() => signals.modalClosed()}>
39+
Close
40+
</Button>
3941
</Container>
4042
);
4143
}

0 commit comments

Comments
 (0)