You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
371 B
22 lines
371 B
.outerContainer { |
|
display: flex; |
|
justify-content: center; |
|
} |
|
|
|
.innerContainer { |
|
width: clamp(200px, 100%, 300px); |
|
display: flex; |
|
flex-direction: column; |
|
background-color: var(--theme-background-secondary); |
|
margin: 1rem auto; |
|
border-radius: var(--theme-rounded-corners); |
|
padding: 1rem; |
|
} |
|
|
|
.header { |
|
font-weight: bold; |
|
} |
|
|
|
.footer { |
|
margin-top: 20px; |
|
}
|
|
|