15 lines
290 B
CSS
15 lines
290 B
CSS
.card {
|
|
background-color: var(--Base-Fill-Normal);
|
|
border-radius: 16px;
|
|
color: var(Theme/Primary/Light/On Surface/Text);
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
gap: 16px;
|
|
}
|
|
|
|
.points {
|
|
font-size: var(--typography-Title2-Desktop-fontSize);
|
|
margin: 0;
|
|
}
|