Files
Website/resources/js/components/SMToolbar.vue
2023-04-21 07:11:00 +10:00

16 lines
241 B
Vue

<template>
<div class="toolbar">
<slot></slot>
</div>
</template>
<style lang="scss">
.toolbar {
display: flex;
width: 100%;
justify-content: space-between;
align-items: flex-start;
gap: 20px;
}
</style>