feat: add scroll bar styling to sidebar and main sections
This commit is contained in:
@@ -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 {
|
||||||
|
|||||||
@@ -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 {
|
||||||
|
|||||||
@@ -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
|
||||||
Reference in New Issue
Block a user