21 lines
433 B
CSS
21 lines
433 B
CSS
|
|
.more-section-container {
|
|
|
|
}
|
|
.drop-handle {
|
|
width: 100%;
|
|
height: 2em;
|
|
display: flex;
|
|
gap: 12;
|
|
margin: 0 0 40px 0;
|
|
flex-wrap: wrap;
|
|
justify-content: center;
|
|
align-items: center;
|
|
align-content: center;
|
|
border-radius: var(--radius-md);
|
|
transition: all 0.3s ease;
|
|
position: relative;
|
|
border: 1px solid var(--border);
|
|
bottom: 0px;
|
|
background-color: var(--bg-raised);
|
|
} |