source: RebuMKReact/src/Components/UtilComponents/CenteredContainer.jsx@ 364f27d

Last change on this file since 364f27d was 364f27d, checked in by MetodiMladenovski <meto.18@…>, 14 months ago

added projects and db scripts

  • Property mode set to 100644
File size: 433 bytes
Line 
1import React from "react";
2import { Container } from "react-bootstrap";
3
4const CenteredContainer = ({ children }) => {
5 return (
6 <Container fluid className="d-flex justify-content-center align-items-center color-latte">
7 <div className="my-4 col-sm-10 col-md-7 col-lg-6 col-xl-4 py-5 px-3 px-sm-5 border login-form-radius shadow bg-white">{children}</div>
8 </Container>
9 );
10};
11export default CenteredContainer;
Note: See TracBrowser for help on using the repository browser.