Skip to content

Commit

Permalink
Merge pull request #28 from weni-ai/fix/ux-resizable-bar
Browse files Browse the repository at this point in the history
Fixes and features at ResizableBar
  • Loading branch information
Aldemylla authored Apr 17, 2024
2 parents 8750a9a + c8c2234 commit fcb0cb7
Show file tree
Hide file tree
Showing 15 changed files with 1,021 additions and 944 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"format": "yarn lint --fix"
},
"dependencies": {
"@weni/unnnic-system": "2.0.0-beta.4",
"@weni/unnnic-system": "2.0.0-beta.8",
"apexcharts": "^3.45.2",
"axios": "^1.6.8",
"vue": "^3.3.11",
Expand Down
12 changes: 11 additions & 1 deletion src/App.vue
Original file line number Diff line number Diff line change
@@ -1,9 +1,19 @@
<template>
<div id="app">
<RouterView />
<InsightsLayout ref="insights-layout">
<RouterView />
</InsightsLayout>
</div>
</template>

<script>
import InsightsLayout from '@/layouts/InsightsLayout/index.vue';
export default {
components: { InsightsLayout },
};
</script>

<style lang="scss" scoped>
#app {
height: 100%;
Expand Down
5 changes: 1 addition & 4 deletions src/components/InsightsInput.vue
Original file line number Diff line number Diff line change
Expand Up @@ -48,10 +48,6 @@ export default {

<style lang="scss" scoped>
.insights-input {
width: 100%;
margin-top: auto;
border-radius: $unnnic-spacing-nano;
padding: $unnnic-spacing-xs;
Expand All @@ -69,6 +65,7 @@ export default {
background: transparent;
width: 100%;
height: 100%;
color: $unnnic-color-neutral-cloudy;
}
Expand Down
Loading

0 comments on commit fcb0cb7

Please sign in to comment.