22 lines
359 B
CSS
22 lines
359 B
CSS
|
.proj-new {
|
||
|
height: 100%;
|
||
|
background-color: var(--color-light);
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
justify-content: center;
|
||
|
align-items: center;
|
||
|
}
|
||
|
|
||
|
.proj-new .proj-title {
|
||
|
margin-bottom: 25px;
|
||
|
font-size: 30px;
|
||
|
}
|
||
|
|
||
|
.proj-new .proj-form {
|
||
|
}
|
||
|
|
||
|
.proj-new .proj-form .btn-group {
|
||
|
display: flex;
|
||
|
justify-content: center;
|
||
|
}
|