mirror of
https://github.com/Unleash/unleash.git
synced 2025-04-10 01:16:39 +02:00
Tidy up
This commit is contained in:
parent
81d7eb6c63
commit
85ad54b90a
@ -236,39 +236,39 @@ export default async function createConfigAsync(): Promise<Config> {
|
|||||||
items: [
|
items: [
|
||||||
{
|
{
|
||||||
label: 'Secure, scalable feature flags',
|
label: 'Secure, scalable feature flags',
|
||||||
to: 'EMPTY LINK',
|
to: 'https://getunleash.io/TBD',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: 'Rollbacks',
|
label: 'Rollbacks',
|
||||||
to: 'EMPTY LINK',
|
to: 'https://getunleash.io/TBD',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: 'Fedramp, SOC2, ISO2700 compliance',
|
label: 'Fedramp, SOC2, ISO2700 compliance',
|
||||||
to: 'EMPTY LINK',
|
to: 'https://getunleash.io/TBD',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: 'Progressive or gradual rollouts',
|
label: 'Progressive or gradual rollouts',
|
||||||
to: 'EMPTY LINK',
|
to: 'https://getunleash.io/TBD',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: 'Trunk-based development',
|
label: 'Trunk-based development',
|
||||||
to: 'EMPTY LINK',
|
to: 'https://getunleash.io/TBD',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: 'Software kill switches',
|
label: 'Software kill switches',
|
||||||
to: 'EMPTY LINK',
|
to: 'https://getunleash.io/TBD',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: 'A/B testing',
|
label: 'A/B testing',
|
||||||
to: 'EMPTY LINK',
|
to: 'https://getunleash.io/TBD',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: 'Feature Management',
|
label: 'Feature Management',
|
||||||
to: 'EMPTY LINK',
|
to: 'https://getunleash.io/TBD',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: 'Canary releases',
|
label: 'Canary releases',
|
||||||
to: 'EMPTY LINK',
|
to: 'https://getunleash.io/TBD',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
@ -255,75 +255,3 @@ html[data-theme="dark"] .unleash-academy-level-badge {
|
|||||||
color: var(--ifm-link-color);
|
color: var(--ifm-link-color);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* docusaurus-plugin-openapi-docs styling
|
|
||||||
|
|
||||||
Taken from
|
|
||||||
https://github.com/PaloAltoNetworks/docusaurus-openapi-docs/blob/02922a6ad6d635373e01409dac8c17a88da2b72e/demo/src/css/custom.css#L45-L9
|
|
||||||
|
|
||||||
Based on this thread:
|
|
||||||
https://github.com/PaloAltoNetworks/docusaurus-openapi-docs/issues/177
|
|
||||||
|
|
||||||
*/
|
|
||||||
|
|
||||||
/* Sidebar Method labels */
|
|
||||||
.api-method > .menu__link {
|
|
||||||
align-items: center;
|
|
||||||
justify-content: start;
|
|
||||||
}
|
|
||||||
|
|
||||||
.api-method > .menu__link::before {
|
|
||||||
width: 50px;
|
|
||||||
height: 20px;
|
|
||||||
font-size: 12px;
|
|
||||||
line-height: 20px;
|
|
||||||
text-transform: uppercase;
|
|
||||||
font-weight: 600;
|
|
||||||
border-radius: 0.25rem;
|
|
||||||
border: 1px solid;
|
|
||||||
border-inline-start-width: 5px;
|
|
||||||
margin-right: var(--ifm-spacing-horizontal);
|
|
||||||
text-align: center;
|
|
||||||
flex-shrink: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.get > .menu__link::before {
|
|
||||||
content: "get";
|
|
||||||
background-color: var(--ifm-color-info-contrast-background);
|
|
||||||
color: var(--ifm-color-info-contrast-foreground);
|
|
||||||
border-color: var(--ifm-color-info-dark);
|
|
||||||
}
|
|
||||||
|
|
||||||
.post > .menu__link::before {
|
|
||||||
content: "post";
|
|
||||||
background-color: var(--ifm-color-success-contrast-background);
|
|
||||||
color: var(--ifm-color-success-contrast-foreground);
|
|
||||||
border-color: var(--ifm-color-success-dark);
|
|
||||||
}
|
|
||||||
|
|
||||||
.delete > .menu__link::before {
|
|
||||||
content: "del";
|
|
||||||
background-color: var(--ifm-color-danger-contrast-background);
|
|
||||||
color: var(--ifm-color-danger-contrast-foreground);
|
|
||||||
border-color: var(--ifm-color-danger-dark);
|
|
||||||
}
|
|
||||||
|
|
||||||
.put > .menu__link::before {
|
|
||||||
content: "put";
|
|
||||||
background-color: var(--ifm-color-warning-contrast-background);
|
|
||||||
color: var(--ifm-color-warning-contrast-foreground);
|
|
||||||
border-color: var(--ifm-color-warning-dark);
|
|
||||||
}
|
|
||||||
|
|
||||||
.patch > .menu__link::before {
|
|
||||||
content: "patch";
|
|
||||||
background-color: var(--ifm-color-success-contrast-background);
|
|
||||||
color: var(--ifm-color-success-contrast-foreground);
|
|
||||||
border-color: var(--ifm-color-success-dark);
|
|
||||||
}
|
|
||||||
|
|
||||||
.head > .menu__link::before {
|
|
||||||
content: "head";
|
|
||||||
background-color: var(--ifm-color-secondary-contrast-background);
|
|
||||||
color: var(--ifm-color-secondary-contrast-foreground);
|
|
||||||
border-color: var(--ifm-color-secondary-dark);
|
|
||||||
}
|
|
||||||
|
@ -161,10 +161,6 @@ div[class^="announcementBar_"] svg {
|
|||||||
|
|
||||||
/* Main area */
|
/* Main area */
|
||||||
|
|
||||||
/* .docs-wrapper {
|
|
||||||
background-color: red;
|
|
||||||
} */
|
|
||||||
|
|
||||||
main {
|
main {
|
||||||
position: relative;
|
position: relative;
|
||||||
background-color: var(--unleash-color-sub-background);
|
background-color: var(--unleash-color-sub-background);
|
||||||
@ -173,6 +169,7 @@ main {
|
|||||||
background-color: var(--ifm-background-color);
|
background-color: var(--ifm-background-color);
|
||||||
margin: 0;
|
margin: 0;
|
||||||
border-radius: 8px;
|
border-radius: 8px;
|
||||||
|
padding: 3rem;
|
||||||
z-index: 1;
|
z-index: 1;
|
||||||
|
|
||||||
@media (min-width: 997px) {
|
@media (min-width: 997px) {
|
||||||
|
Loading…
Reference in New Issue
Block a user