Last change
on this file 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
|
Rev | Line | |
---|
[364f27d] | 1 | import React from "react";
|
---|
| 2 | import { Container } from "react-bootstrap";
|
---|
| 3 |
|
---|
| 4 | const 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 | };
|
---|
| 11 | export default CenteredContainer; |
---|
Note:
See
TracBrowser
for help on using the repository browser.