ruoyi-plus-soybean/src/layouts/common/GlobalSearch/components/SearchFooter.vue

25 lines
661 B
Vue
Raw Normal View History

<template>
<div class="px-24px h-44px flex-y-center">
<span class="mr-14px">
<icon-ant-design-enter-outlined class="icon text-20px p-2px mr-3px" />
确认
</span>
<span class="mr-14px">
<icon-mdi-arrow-up-thin class="icon text-20px p-2px mr-5px" />
<icon-mdi-arrow-down-thin class="icon text-20px p-2px mr-3px" />
切换
</span>
<span>
<icon-mdi-close class="icon text-20px p-2px mr-3px" />
关闭
</span>
</div>
</template>
<script lang="ts" setup></script>
<style lang="scss" scoped>
.icon {
box-shadow: inset 0 -2px #cdcde6, inset 0 0 1px 1px #fff, 0 1px 2px 1px #1e235a66;
}
</style>