mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-19 00:22:15 +00:00
* lazy-loading and solved bugs * lazy-loading for pull request on master * Update vuefilemanager.php Co-authored-by: Peter Papp <peterpapp@makingcg.com>
44 lines
798 B
Vue
44 lines
798 B
Vue
<template>
|
|
<div class="actions">
|
|
<slot></slot>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'PopupActions',
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
@import '@assets/vue-file-manager/_variables';
|
|
@import '@assets/vue-file-manager/_mixins';
|
|
|
|
.actions {
|
|
padding: 20px;
|
|
margin: 0 -10px;
|
|
display: flex;
|
|
|
|
.popup-button {
|
|
width: 100%;
|
|
margin: 0 10px;
|
|
}
|
|
}
|
|
|
|
@media only screen and (max-width: 690px) {
|
|
.actions {
|
|
padding: 15px;
|
|
position: absolute;
|
|
bottom: 0;
|
|
left: 0;
|
|
right: 0;
|
|
}
|
|
}
|
|
|
|
@media only screen and (max-width: 320px) {
|
|
.actions {
|
|
position: unset;
|
|
}
|
|
}
|
|
</style>
|