Did some work on encapsulating style sheets.

Coninued working on custom dropdowns. Still work to go but getting there.
This commit is contained in:
ajdj100
2023-05-18 22:09:55 -04:00
parent 6386e02acd
commit 54738d2ec9
8 changed files with 51 additions and 15 deletions

View File

@@ -16,4 +16,15 @@ export default {
<div v-if="active">
<slot />
</div>
</template>
</template>
<style scoped>
div {
display: flex;
flex-direction: column;
position: absolute;
background-color: var(--background-secondary);
border-radius: 0px 0px 10px 10px;
padding: 10px;
}
</style>