platypush/platypush/backend/http/webapp/src/components/panels/Music/Header.vue
Fabio Manganiello 01c7d230f1
[Entities UI] Added Expand/Collapse and Hide actions to groups.
Also, replaced all the deprecated `::v-deep` SCSS notations with
`:deep`.
2023-10-14 14:02:17 +02:00

34 lines
463 B
Vue

<template>
<div class="header">
<slot />
</div>
</template>
<script>
export default {
name: "Header",
}
</script>
<style lang="scss" scoped>
@import 'vars.scss';
.header {
width: 100%;
height: $music-header-height;
background: $menu-panel-bg;
padding: .5em;
box-shadow: $border-shadow-bottom;
:deep(.dropdown) {
.item.active {
color: $default-hover-fg;
}
.item.selected {
font-weight: bold;
}
}
}
</style>