33 lines
503 B
CSS
33 lines
503 B
CSS
|
|
.container {
|
||
|
|
width: 100%;
|
||
|
|
height: fit-content;
|
||
|
|
min-height: 100%;
|
||
|
|
display: flex;
|
||
|
|
align-items: center;
|
||
|
|
flex-direction: column;
|
||
|
|
}
|
||
|
|
|
||
|
|
.header {
|
||
|
|
width: 100%;
|
||
|
|
height: fit-content;
|
||
|
|
padding: 10px;
|
||
|
|
border-bottom: 1px solid #dddddd;
|
||
|
|
}
|
||
|
|
|
||
|
|
.body {
|
||
|
|
width: 100%;
|
||
|
|
height: fit-content;
|
||
|
|
}
|
||
|
|
|
||
|
|
.back {
|
||
|
|
width: fit-content;
|
||
|
|
height: fit-content;
|
||
|
|
display: flex;
|
||
|
|
align-items: center;
|
||
|
|
justify-content: center;
|
||
|
|
gap: 10px;
|
||
|
|
cursor: pointer;
|
||
|
|
color: #444444;
|
||
|
|
font-weight: 500;
|
||
|
|
font-size: 13px;
|
||
|
|
}
|