diff --git a/my-app/src/components/ApplicationComponents/ApplicationItem.js b/my-app/src/components/ApplicationComponents/ApplicationItem.js index 0430414da4d68d5ce63d3c26bac9b30f55c68c7c..8f3f4c76d628f7ce9d1aba20b3f9f646eb2aeaa2 100644 --- a/my-app/src/components/ApplicationComponents/ApplicationItem.js +++ b/my-app/src/components/ApplicationComponents/ApplicationItem.js @@ -27,7 +27,7 @@ class ApplicationItem extends Component { return ( <div> <div> - <Card style={{ width: "22rem", background: '#ebebeb', margin: '0.5rem' }} id={itemID}> + <Card style={{ width: "25rem", background: '#ebebeb', margin: '0.5rem' }} id={itemID}> <Card.Header><b>{application.applicantUserID}: {application.universityShortName} {application.targetPeriodShortName} {application.targetPeriodYear}</b></Card.Header> <Table responsive="sm"> <tbody> diff --git a/my-app/src/components/ApplicationComponents/DegreeCourseApplicationManagement.js b/my-app/src/components/ApplicationComponents/DegreeCourseApplicationManagement.js index fa31cf9cda71d4ccd3427fa246bed0560ba492e0..600684bde154cac1a29967c48ad24b8a04c960e3 100644 --- a/my-app/src/components/ApplicationComponents/DegreeCourseApplicationManagement.js +++ b/my-app/src/components/ApplicationComponents/DegreeCourseApplicationManagement.js @@ -62,7 +62,7 @@ class DegreeCourseApplicationManagement extends Component { <div> <div id="DegreeCourseApplicationManagementPageListComponent" style={{ background: '#2b3648', padding: '1rem' }}> <h2 style={{ textAlign: 'left', color: "white" }}>Bewerbungen</h2> - <div style={{ display: 'flex', flexFlow: 'row wrap', height: '100vh', justifyContent: 'center' }}> + <div style={{ display: 'flex', flexFlow: 'row wrap', height: '100vh', justifyContent: 'left' }}> {this.MapAllApplications()} <DeleteApplicationModal /> </div> diff --git a/my-app/src/components/DegreeCourseComponents/DegreeCourseManagement.js b/my-app/src/components/DegreeCourseComponents/DegreeCourseManagement.js index 8ab691f2a51f831a39aaca8625fdce2a25809ae1..0d40bd06e3f6cf92d0f758f16d6bfdfd060fb75a 100644 --- a/my-app/src/components/DegreeCourseComponents/DegreeCourseManagement.js +++ b/my-app/src/components/DegreeCourseComponents/DegreeCourseManagement.js @@ -116,7 +116,7 @@ class DegreeCourseManagement extends Component { <> <h2 style={{textAlign: 'left', color: "white"}}>Studiengang-Liste</h2> {addButton} - <div style={{ display: "flex", flexFlow: "row wrap", justifyContent: 'center' }} id="DegreeCourseManagementPageListComponent"> + <div style={{ display: "flex", flexFlow: "row wrap", justifyContent: 'left' }} id="DegreeCourseManagementPageListComponent"> {this.MapAllDegreeCourses()} <DeleteDegreeCourseModal /> </div> diff --git a/my-app/src/components/PublicPage.js b/my-app/src/components/PublicPage.js index b734214bb52da08504cfe220d8b05567dcc65e4a..fc83a2d03b9eb84740630cdcfd7365bc12da687c 100644 --- a/my-app/src/components/PublicPage.js +++ b/my-app/src/components/PublicPage.js @@ -4,7 +4,7 @@ import LoginButton from "./loginButton"; class PublicPage extends Component { render() { return ( - <div className="page-content" id="LandingPage" style={{ backgroundImage: 'url("https://www.ffn.de/fileadmin/ffn.de/programm/ausbildungsboerse/studium.jpg")', height: '100vh', backgroundSize: 'contain', backgroundRepeat: 'no-repeat', backgroundColor: '#2b3648', padding: '5rem', display: 'flex', justifyContent: 'center' }}> + <div className="page-content" id="LandingPage" style={{ backgroundImage: 'url("https://www.ffn.de/fileadmin/ffn.de/programm/ausbildungsboerse/studium.jpg")', height: '100vh', backgroundSize: 'cover', backgroundRepeat: 'no-repeat', backgroundColor: '#2b3648', padding: '5rem', display: 'flex', justifyContent: 'center' }}> <div style={{ width: '50rem', height: '25rem', padding: '10rem', backgroundColor: 'rgba(0, 0, 0, 0.8)' }}> <h3 style={{ color: 'white' }}>Berliner Hochschule für Technik</h3> <p style={{ color: 'white' }}>Herzlich Willkommen auf unserer Homepage!</p> diff --git a/my-app/src/components/UserComponents/UserManagement.js b/my-app/src/components/UserComponents/UserManagement.js index 26790adcb22590d3fbc159ce43e521bf5674c83a..5f681fd41452b046eacfadd7860e7186fd02218f 100644 --- a/my-app/src/components/UserComponents/UserManagement.js +++ b/my-app/src/components/UserComponents/UserManagement.js @@ -98,7 +98,7 @@ class UserManagement extends Component { <img alt="Add-User-Button" src={addIcon} style={{ width: '2rem' }}></img> </Button> </div> - <div style={{ display: "flex", flexFlow: "row wrap", justifyContent: "center" }}> + <div style={{ display: "flex", flexFlow: "row wrap", justifyContent: "left" }}> {this.MapAllUsers()} <DeleteUserModal /> </div>