You've already forked AstralRinth
forked from didirus/AstralRinth
* Base modal implementation * Modal Report page * Upgrade multiselect * Fixed multiselect styling * fix build err * rev change * Added dropdown component, addressed changes Removed unused classes after vue multiselect was removed Updated markdown-it and xss * Update index.js * fix lint * Fix prettier code style * Address most changes * New dropdown * Undo comment Makes the component close when not focused * Fix accessibility issues * Fix double focus * addressed changes to modal * Run Prettier * Update ModalReport.vue * Fixed spacing issues --------- Co-authored-by: Jai A <jaiagr+gpg@pm.me>
20 lines
425 B
Vue
20 lines
425 B
Vue
<template>
|
|
<div class="demo"><slot /></div>
|
|
</template>
|
|
|
|
<style lang="scss" scoped>
|
|
.demo {
|
|
background: var(--color-raised-bg);
|
|
border: 1px solid var(--color-button-bg);
|
|
border-radius: var(--gap-lg);
|
|
display: flex;
|
|
padding: var(--gap-md);
|
|
gap: var(--gap-md);
|
|
align-items: center;
|
|
flex-wrap: wrap;
|
|
background: var(--color-raised-bg);
|
|
border-radius: var(--radius-lg);
|
|
padding: var(--gap-md);
|
|
}
|
|
</style>
|