platypush/platypush/backend/http/webapp/src/components/elements/Tabs.vue

24 lines
339 B
Vue
Raw Normal View History

2023-10-10 00:39:27 +02:00
<template>
<div class="tabs">
<slot />
</div>
</template>
<script>
export default {
name: "Tabs",
}
</script>
<style lang="scss" scoped>
.tabs {
background: $tabs-bg;
display: flex;
flex-direction: row;
align-items: flex-end;
margin-top: 0.2em;
margin-bottom: 0.2em;
box-shadow: $border-shadow-bottom;
}
</style>