mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-19 00:22:15 +00:00
30 lines
534 B
Vue
30 lines
534 B
Vue
<template>
|
|
<div class="actions flex items-center space-x-4 px-6 py-4 pb-6">
|
|
<slot></slot>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'PopupActions',
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
@media only screen and (max-width: 690px) {
|
|
.actions {
|
|
position: absolute;
|
|
bottom: 0;
|
|
left: 0;
|
|
right: 0;
|
|
}
|
|
}
|
|
|
|
@media only screen and (max-width: 320px) {
|
|
.actions {
|
|
position: unset;
|
|
}
|
|
}
|
|
</style>
|