misskey/src/client/app/common/views/components/ui/horizon-group.vue

52 lines
659 B
Vue
Raw Normal View History

2018-11-04 06:23:28 +01:00
<template>
2018-11-14 08:30:58 +01:00
<div class="vnxwkwuf" :class="{ inputs, noGrow }">
2018-11-04 06:23:28 +01:00
<slot></slot>
</div>
</template>
<script lang="ts">
import Vue from 'vue';
export default Vue.extend({
provide: {
horizonGrouped: true
},
props: {
inputs: {
type: Boolean,
required: false,
default: false
2018-11-14 08:30:58 +01:00
},
noGrow: {
type: Boolean,
required: false,
default: false
2018-11-04 06:23:28 +01:00
}
}
});
</script>
<style lang="stylus" scoped>
2018-11-14 08:30:58 +01:00
.vnxwkwuf
margin 16px 0
2018-11-04 06:23:28 +01:00
&.inputs
margin 32px 0
&.fit-top
margin-top 0
&.fit-bottom
margin-bottom 0
2018-11-14 08:30:58 +01:00
&:not(.noGrow)
display flex
> *
flex 1
2018-12-03 01:43:07 +01:00
min-width 0 !important
2018-11-04 06:23:28 +01:00
2018-11-14 08:30:58 +01:00
> *:not(:last-child)
margin-right 16px !important
2018-11-04 06:23:28 +01:00
</style>