Files
oxygen-ui/src/assets/css/pages/tools/store.scss
FatttSnake 7b61a5fdb3 Feat(Menu): Add tool menu via drag and drop
Drag and drop a tool card to add tool menu
2024-04-30 13:42:36 +08:00

50 lines
816 B
SCSS

@use '@/assets/css/constants' as constants;
[data-component=tools-store] {
.search {
display: flex;
position: sticky;
width: 100%;
margin-top: 20px;
top: 20px;
z-index: 10;
justify-content: center;
transition: all 0.3s ease;
> * {
width: 80%;
}
&.hide {
transform: translateY(-60px);
}
}
.root-content {
padding: 20px;
gap: 20px;
flex-wrap: wrap;
justify-content: center;
> div {
width: 180px;
height: 290px;
flex: 0 0 auto;
}
.no-tool {
display: flex;
justify-content: center;
font-size: 1.4em;
font-weight: bolder;
color: constants.$font-secondary-color;
}
}
.android-qrcode {
align-items: center;
transform: translateX(-16px);
gap: 20px;
}
}