mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-04 20:27:44 +08:00
ee91b01400
* feat(theme-chalk): dark bg color overlay for components * fix(theme-chalk): details of components * fix(theme-chalk): box-shadow
19 lines
397 B
Vue
19 lines
397 B
Vue
<template>
|
|
Scroll down to see the bottom-right button.
|
|
<el-backtop :bottom="100">
|
|
<div
|
|
style="
|
|
height: 100%;
|
|
width: 100%;
|
|
background-color: var(--el-bg-color-overlay);
|
|
box-shadow: var(--el-box-shadow-lighter);
|
|
text-align: center;
|
|
line-height: 40px;
|
|
color: #1989fa;
|
|
"
|
|
>
|
|
UP
|
|
</div>
|
|
</el-backtop>
|
|
</template>
|