diff --git a/public/images/favicon.ico b/public/favicon.ico similarity index 100% rename from public/images/favicon.ico rename to public/favicon.ico diff --git a/src/app/components/Section.module.css b/src/app/components/Section.module.css index 1680de0..2fdf992 100644 --- a/src/app/components/Section.module.css +++ b/src/app/components/Section.module.css @@ -5,13 +5,12 @@ gap: 2rem; padding: 5rem; max-width: 1450px; - } @media screen and (max-width: 1000px) { .container { flex-direction: column; - align-items: flex-start; + align-items: center; justify-content: center; padding: 2.5rem; gap: 1rem; @@ -34,4 +33,15 @@ background-color: #0b3766; padding: 0.2rem 0.5rem; border-radius: 5px; +} + +.container>article:nth-child(1)>h1 { + font-size: 40px; + font-weight: bold; +} + +@media screen and (min-width: 1000px) { + .container>article:nth-child(2)>h1 { + padding-top: 75px; + } } \ No newline at end of file diff --git a/src/app/components/SideBar.module.css b/src/app/components/SideBar.module.css index 03a7e61..0e6510b 100644 --- a/src/app/components/SideBar.module.css +++ b/src/app/components/SideBar.module.css @@ -1,5 +1,4 @@ .container { - position: sticky; display: flex; flex-direction: column; height: 100%; diff --git a/src/app/globals.css b/src/app/globals.css index b8c01f8..0516cd9 100644 --- a/src/app/globals.css +++ b/src/app/globals.css @@ -25,4 +25,5 @@ body { flex-direction: column; height: 100%; width: 100%; + min-width: 0; } \ No newline at end of file diff --git a/src/docs/version_002/authentication/copy.md b/src/docs/version_002/authentication/copy.md index 3891d47..ae78656 100644 --- a/src/docs/version_002/authentication/copy.md +++ b/src/docs/version_002/authentication/copy.md @@ -1,9 +1,5 @@ # Authentication -The Onpsring API uses API keys to authenticate requests. You can view and manage your API keys your instance. +The Onpsring API uses API keys to authenticate requests. You can view and manage your API keys from within your instance. -The API key needs to be provided in every request. This is done by adding the `X-ApiKey` header to the request. - -API Keys are specific to an instance. If you are using the API to access data from multiple instances, you will need to create an API key for each instance. The API key must be in an `Enabled` status and it must be assigned a role that will control the permissions for requests made by the API key. The role assigned should be in an `Active` status. - -If the role assigned to the API key does not have sufficient permissions to perform the requested action, an error will be returned. Onspring administrators may configure roles for API keys just as they would any other role in Onspring. However each API key can have only one assigned role. +The API key needs to be provided in every request. This is done by adding the `X-ApiKey` header to the request. The API key must be in an `Enabled` status and it must be assigned a role that will control the permissions for requests made by the API key. The role assigned should be in an `Active` status. If the role assigned to the API key does not have sufficient permissions to perform the requested action, an error will be returned. Onspring administrators may configure roles for API keys just as they would any other role in Onspring. However each API key can have only one assigned role. diff --git a/src/docs/version_002/authentication/example.md b/src/docs/version_002/authentication/example.md index 85bedc1..596a1b9 100644 --- a/src/docs/version_002/authentication/example.md +++ b/src/docs/version_002/authentication/example.md @@ -1,5 +1,7 @@ # X-ApiKey Header +API Keys are specific to an instance. If you are using the API to access data from multiple instances, you will need to create an API key for each instance. + {% code heading="X-API KEY" language="text" %} ```text diff --git a/src/docs/version_002/introduction/copy.md b/src/docs/version_002/introduction/copy.md index df37835..cbf62ff 100644 --- a/src/docs/version_002/introduction/copy.md +++ b/src/docs/version_002/introduction/copy.md @@ -1,4 +1,4 @@ -# Introduction +# Introduction {% .articleTitle %} The Onspring API is organized around REST. It enables external programs to retrieve, save, and delete data within your Onspring instance. The Onspring API implements version 3 of the Open API Specification (OAS).