mirror of
https://github.com/dataease/dataease.git
synced 2025-02-27 13:52:53 +08:00
19 lines
419 B
Plaintext
19 lines
419 B
Plaintext
.border-bottom-tab(@width) {
|
|
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;
|
|
}
|
|
|
|
:deep(.ed-tabs__header::after) {
|
|
right: -@width;
|
|
}
|
|
} |