ChatGPT-Next-Web/app/components/mask.module.scss
2023-04-25 00:49:27 +08:00

34 lines
577 B
SCSS

.mask-page {
height: 100%;
display: flex;
flex-direction: column;
.mask-page-body {
padding: 20px;
overflow-y: auto;
.search-bar {
width: 100%;
max-width: 100%;
margin-bottom: 20px;
}
.mask-item {
.mask-icon {
display: flex;
align-items: center;
justify-content: center;
border: var(--border-in-light);
border-radius: 10px;
padding: 6px;
}
.mask-actions {
display: flex;
flex-wrap: nowrap;
transition: all ease 0.3s;
}
}
}
}