Skip to content

Commit 5da05ce

Browse files
committed
commented out display none styling for scroll bar and added scroll bars to components and routes divs
1 parent bcd98b2 commit 5da05ce

File tree

2 files changed

+13
-11
lines changed

2 files changed

+13
-11
lines changed

src/components/HomeSideDropDown.vue

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,18 @@
22
<div class="q-pa-md" style="max-width: 350px">
33
<q-list padding bordered class="rounded-borders drawer-menu">
44
<q-expansion-item dense dense-toggle expand-separator label="Components">
5-
<q-card>
6-
<q-card-section>
7-
<div class="input-container">
8-
<ComponentList />
9-
</div>
10-
</q-card-section>
11-
</q-card>
5+
<q-card>
6+
<q-card-section>
7+
<div class="input-container" style='height: 130px'>
8+
<ComponentList />
9+
</div>
10+
</q-card-section>
11+
</q-card>
1212
</q-expansion-item>
1313
<q-expansion-item dense dense-toggle expand-separator label="Routes">
1414
<q-card>
1515
<q-card-section>
16-
<div class="input-container">
16+
<div class="input-container" style='height: 150px'>
1717
<RouteDisplay />
1818
<br />
1919
</div>
@@ -48,13 +48,15 @@ export default {
4848
</script>
4949

5050
<style lang="stylus">
51+
5152
.input-add {
5253
margin: 0em 1em 0em 1em;
5354
}
5455
5556
.input-container {
5657
margin-top: 1rem;
5758
background: $subsecondary;
59+
overflow-y: auto;
5860
}
5961
6062
.red {

src/layouts/MyLayout.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ export default {
103103
// background: #272822;
104104
}
105105
106-
::-webkit-scrollbar {
107-
display: none;
108-
}
106+
// ::-webkit-scrollbar {
107+
// display: none;
108+
// }
109109
</style>

0 commit comments

Comments
 (0)