gis-bi/core/core-frontend/src/style/mixin.less

20 lines
385 B
Plaintext
Raw Normal View History

2025-02-27 14:44:08 +08:00
.border-bottom-tab(@width) {
2025-03-13 18:40:31 +08:00
margin-left: @width;
:deep(.ed-tabs__header::before),
:deep(.ed-tabs__header::after) {
content: '';
position: absolute;
bottom: 0;
width: @width;
height: 1px;
background-color: rgba(31, 35, 41, 0.15);
}
:deep(.ed-tabs__header::before) {
left: -@width;
}
2025-02-27 14:44:08 +08:00
2025-03-13 18:40:31 +08:00
:deep(.ed-tabs__header::after) {
right: -@width;
}
}