added tests and css modules to LoginPage components

This commit is contained in:
Wenszel
2023-12-13 16:31:52 +01:00
parent caf6bc7d91
commit a33ebeccdd
27 changed files with 614 additions and 298 deletions
@@ -0,0 +1,46 @@
.container {
margin: 50px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
width: 500px;
color: white;
}
.title {
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
width: 100%;
height: 40px;
border: 1px solid white;
border-radius: 2px;
transform: scaleX(1.02);
box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
padding-left: 10px;
text-align: center;
}
.title > h1 {
width: 100%;
margin: 0;
padding: 0;
}
.content {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
width: 100%;
padding-left: 5px;
padding-right: 5px;
padding-top: 10px;
background-color: rgba(0, 0, 0, 0.5);
box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
border-left: 1px solid black;
border-right: 1px solid black;
border-bottom: 1px solid black;
}