mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-14 01:11:25 +08:00
29 lines
448 B
SCSS
29 lines
448 B
SCSS
@use './mixins' as *;
|
|
|
|
.sub-nav {
|
|
@include with-border;
|
|
@include with-bg;
|
|
position: sticky;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
z-index: var(--sub-nav-z-index);
|
|
overflow: hidden;
|
|
|
|
.go-back-top {
|
|
transform: translateY(100%);
|
|
opacity: 0;
|
|
|
|
&.show {
|
|
transform: translateY(0);
|
|
opacity: 1;
|
|
}
|
|
}
|
|
|
|
@include respond-to('lg') {
|
|
display: none !important;
|
|
}
|
|
}
|