2022-05-26 08:52:27 +03:00
|
|
|
.outerContainer {
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.innerContainer {
|
2022-07-08 10:10:18 +03:00
|
|
|
width: clamp(200px, 100%, 300px);
|
2022-05-26 08:52:27 +03:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2022-07-08 10:10:18 +03:00
|
|
|
;
|
2022-05-26 08:52:27 +03:00
|
|
|
background-color: var(--theme-background-secondary);
|
2022-07-08 10:10:18 +03:00
|
|
|
margin: auto;
|
2022-05-26 08:52:27 +03:00
|
|
|
border-radius: var(--theme-rounded-corners);
|
2022-07-08 10:10:18 +03:00
|
|
|
padding: 1rem;
|
2022-05-26 08:52:27 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.header {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
.footer {
|
|
|
|
margin-top: 20px;
|
|
|
|
}
|