17 lines
304 B
CSS
17 lines
304 B
CSS
.container {
|
|
display: flex;
|
|
position: relative;
|
|
border-radius: var(--Corner-Radius-md);
|
|
overflow: hidden;
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
|
}
|
|
|
|
.button {
|
|
position: absolute;
|
|
bottom: var(--Space-x2);
|
|
right: var(--Space-x2);
|
|
box-shadow: 0px 0px 8px 1px rgba(0, 0, 0, 0.1);
|
|
}
|