10 lines
157 B
CSS
10 lines
157 B
CSS
|
|
.card {
|
||
|
|
position: fixed;
|
||
|
|
inset: 1rem;
|
||
|
|
border: 2px solid black;
|
||
|
|
border-radius: 2rem;
|
||
|
|
display: flex;
|
||
|
|
flex-direction: column;
|
||
|
|
overflow: hidden;
|
||
|
|
}
|