File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed
packages/app/src/app/pages/common/Modals/NetlifyLogs Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff 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
2324export const Item = styled . li `
Original file line number Diff line number Diff 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 }
You can’t perform that action at this time.
0 commit comments