2022-05-25 22:52:27 -07:00
|
|
|
.outerContainer {
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.innerContainer {
|
2022-07-08 09:10:18 +02:00
|
|
|
width: clamp(200px, 100%, 300px);
|
2022-05-25 22:52:27 -07:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2022-08-29 23:17:12 -07:00
|
|
|
color: var(--theme-color-components-text-on-light);
|
|
|
|
background-color: var(--theme-color-background-main);
|
2022-07-08 22:20:22 +02:00
|
|
|
margin: 1rem auto;
|
2022-05-25 22:52:27 -07:00
|
|
|
border-radius: var(--theme-rounded-corners);
|
2022-07-08 09:10:18 +02:00
|
|
|
padding: 1rem;
|
2022-05-25 22:52:27 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
.header {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
.footer {
|
|
|
|
margin-top: 20px;
|
|
|
|
}
|