Files
vuefilemanager/resources/js/components/Others/Popup/PopupActions.vue
2022-01-19 08:21:32 +01:00

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>