feat: add scroll bar styling to sidebar and main sections

This commit is contained in:
Stevan Freeborn
2023-04-17 21:54:11 -05:00
parent 501634e246
commit 248074e3ae
9 changed files with 57 additions and 0 deletions
+18
View File
@@ -6,6 +6,24 @@
align-items: center; align-items: center;
margin: 0 auto; margin: 0 auto;
overflow-y: auto; overflow-y: auto;
scrollbar-color: transparent #0b3766;
}
.container::-webkit-scrollbar {
background-color: transparent;
}
.container::-webkit-scrollbar-thumb {
background-color: transparent;
border-radius: 10px;
}
.container:hover::-webkit-scrollbar-thumb {
background-color: #0b3766;
}
.container:hover::-webkit-scrollbar {
background-color: #043160;
} }
.divider { .divider {
+15
View File
@@ -4,6 +4,21 @@
height: 100%; height: 100%;
border-right: 1px solid #848586; border-right: 1px solid #848586;
padding: 1rem; padding: 1rem;
overflow: auto;
scrollbar-color: transparent #0b3766;
}
.container::-webkit-scrollbar {
background-color: transparent;
}
.container::-webkit-scrollbar-thumb {
background-color: transparent;
border-radius: 10px;
}
.container:hover::-webkit-scrollbar-thumb {
background-color: #0b3766;
} }
.link { .link {
+18
View File
@@ -136,6 +136,24 @@ export const versionTwo: DocsStructure = {
}, },
], ],
}, },
{
title: 'Get Fields by App',
folder: 'get_fields_by_app',
copy: 'copy.md',
example: 'example.md',
},
{
title: 'Get Field by Id',
folder: 'get_field_by_id',
copy: 'copy.md',
example: 'example.md',
},
{
title: 'Get Fields by Ids',
folder: 'get_fields_by_ids',
copy: 'copy.md',
example: 'example.md',
},
], ],
}, },
{ {
@@ -0,0 +1 @@
# Get Field by Id {% #get-field-by-id %}
@@ -0,0 +1 @@
# Retrieve a field by its id
@@ -0,0 +1 @@
# Get Fields by App {% #get-fields-by-app %}
@@ -0,0 +1 @@
# Retrieve all fields for an app
@@ -0,0 +1 @@
# Get Fields by Ids {% #get-fields-by-ids %}
@@ -0,0 +1 @@
# Retrieve a batch of fields by ids