Skip to content

Commit

Permalink
stop scoping the styles
Browse files Browse the repository at this point in the history
  • Loading branch information
Juraci committed Jul 8, 2024
1 parent 1ca0030 commit 268d382
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"preview": "vite preview --port 4173",
"test:unit": "vitest",
"test:e2e": "start-server-and-test preview http://localhost:4173 'cypress run --e2e'",
"test:e2e:dev": "start-server-and-test 'vite dev --port 4173' http://localhost:4173 'cypress open --e2e'",
"test:e2e:dev": "start-server-and-test 'vite dev --port 5173' http://localhost:5173 'cypress open --e2e'",
"lint": "eslint .",
"format": "prettier --write src/"
},
Expand Down
2 changes: 1 addition & 1 deletion src/components/NodesArbor.vue
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ const { nodesList } = storeToRefs(store);
</router-link>
</template>

<style scoped>
<style>
.node-card-title {
white-space: nowrap;
overflow: hidden;
Expand Down
2 changes: 1 addition & 1 deletion src/views/HomeIndex.vue
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ const handleNodeNotFound = () => {
</div>
</template>

<style scoped>
<style>
.container {
display: grid;
grid-template-columns: minmax(400px, 1fr) 3fr;
Expand Down
2 changes: 1 addition & 1 deletion src/views/NodeShow.vue
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ const handleAddChildNode = () => {
</div>
</template>

<style scoped>
<style>
.active-node {
display: flex;
flex-direction: column;
Expand Down

0 comments on commit 268d382

Please sign in to comment.