72 lines
1.2 KiB
SCSS
Raw Normal View History

2023-04-25 10:48:27 +08:00
.leftMenu {
width: 16%;
min-height: 94%;
border-radius: 5px;
// background-color: rgba(255 255 255 / 80%);
// background-color: pink;
}
.tab-wrapper {
position: relative;
box-sizing: border-box;
display: flex;
justify-content: center;
width: 100%;
height: 50px;
padding: 0 45px;
user-select: none;
background-color: #ffffff;
border-bottom: 1px solid #f8f8f8;
border-top-left-radius: 5px;
border-top-right-radius: 5px;
}
.line {
position: absolute;
bottom: 0;
height: 2px;
background-color: #409eff;
transition: left 0.2s ease;
}
.tab {
flex: 1;
font-size: 12px;
// font-weight: 400;
line-height: 49px;
color: #808284;
text-align: center;
cursor: pointer;
&.active {
color: #409eff;
}
}
.search-wrapper {
box-sizing: border-box;
display: flex;
align-items: center;
width: 100%;
height: 50px;
padding: 0 10px;
background-color: #ffffff;
}
.search-btn {
2023-04-25 14:37:08 +08:00
margin-left: 12px;
2023-04-25 10:48:27 +08:00
}
.footer {
display: flex;
align-items: center;
justify-content: center;
height: 50px;
background-color: #ffffff;
border-bottom-right-radius: 5px;
border-bottom-left-radius: 5px;
}
.content {
min-height: 82%;
padding: 0 10px;
background-color: #ffffff;
.item {
height: 101px;
}
}