21 lines
239 B
CSS
21 lines
239 B
CSS
@layer base {
|
|
.content {
|
|
border-radius: 22px;
|
|
|
|
.description {
|
|
padding: 12px;
|
|
border-radius: 18px;
|
|
text-align: center;
|
|
}
|
|
}
|
|
|
|
.buttons {
|
|
display: flex;
|
|
gap: 6px;
|
|
}
|
|
|
|
.button {
|
|
flex: 1;
|
|
}
|
|
}
|