initial docker setup
This commit is contained in:
17
frontend/src/containers/footer/Footer.jsx
Normal file
17
frontend/src/containers/footer/Footer.jsx
Normal file
@@ -0,0 +1,17 @@
|
||||
import React, {Component} from 'react';
|
||||
import TermsContainer from '../terms/TermsContainer.jsx';
|
||||
import './style/Footer.css';
|
||||
|
||||
class Footer extends Component {
|
||||
render() {
|
||||
return (
|
||||
<footer className="App-footer">
|
||||
<div className="footer-buttons">
|
||||
<TermsContainer />
|
||||
</div>
|
||||
</footer>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
export default Footer;
|
||||
12
frontend/src/containers/footer/style/Footer.scss
Normal file
12
frontend/src/containers/footer/style/Footer.scss
Normal file
@@ -0,0 +1,12 @@
|
||||
@import '../../../styleConstants.scss';
|
||||
|
||||
footer {
|
||||
.footer-btn {
|
||||
cursor: pointer;
|
||||
color: $whiteColor;
|
||||
}
|
||||
}
|
||||
|
||||
.modal-dialog{
|
||||
max-width: 80%;
|
||||
}
|
||||
Reference in New Issue
Block a user