20 lines
263 B
SCSS
20 lines
263 B
SCSS
|
.ps-card {
|
||
|
background-color: var(--background);
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
border: 1rem solid var(--foreground);
|
||
|
|
||
|
&--header {
|
||
|
padding: 2rem;
|
||
|
}
|
||
|
|
||
|
&--title {
|
||
|
margin: 0;
|
||
|
padding: 0;
|
||
|
}
|
||
|
|
||
|
&--body {
|
||
|
padding: 0rem 2rem;
|
||
|
}
|
||
|
}
|