This commit is contained in:
2022-02-19 22:18:22 +01:00
parent db82029a00
commit e96989be41
10 changed files with 16 additions and 37 deletions

1
.gitignore vendored
View File

@ -1 +1,2 @@
node_modules node_modules
resources

View File

@ -2,12 +2,8 @@
position: static position: static
} }
.fixed { .mb-4 {
position: fixed margin-bottom: 1rem
}
.-mt-4 {
margin-top: -1rem
} }
.mt-0 { .mt-0 {
@ -30,14 +26,6 @@
margin-top: 0.25rem margin-top: 0.25rem
} }
.mt-4 {
margin-top: 1rem
}
.mb-4 {
margin-bottom: 1rem
}
.block { .block {
display: block display: block
} }
@ -159,14 +147,6 @@
padding: 1rem padding: 1rem
} }
.p-2 {
padding: 0.5rem
}
.p-3 {
padding: 0.75rem
}
.py-2\.5 { .py-2\.5 {
padding-top: 0.625rem; padding-top: 0.625rem;
padding-bottom: 0.625rem padding-bottom: 0.625rem
@ -182,21 +162,11 @@
padding-right: 1rem padding-right: 1rem
} }
.py-3 {
padding-top: 0.75rem;
padding-bottom: 0.75rem
}
.py-1 { .py-1 {
padding-top: 0.25rem; padding-top: 0.25rem;
padding-bottom: 0.25rem padding-bottom: 0.25rem
} }
.py-0 {
padding-top: 0px;
padding-bottom: 0px
}
.pb-2 { .pb-2 {
padding-bottom: 0.5rem padding-bottom: 0.5rem
} }
@ -292,6 +262,10 @@
} }
@media (min-width: 1024px) { @media (min-width: 1024px) {
.lg\:hidden {
display: none
}
.lg\:flex-row { .lg\:flex-row {
flex-direction: row flex-direction: row
} }

View File

@ -3,7 +3,11 @@
[goldmark] [goldmark]
[goldmark.renderer] [goldmark.renderer]
unsafe = true unsafe = true
[highlight] [highlight]
noClasses = false noClasses = false
[tableOfContents]
startLevel = 2
endLevel = 4

View File

@ -366,7 +366,7 @@ After few seconds, Traefik should launch and generate proper SSL certificate for
If properly configured, you will be prompted for access. After entering admin as user and your own chosen password, you should finally access to the traefik dashboard ! If properly configured, you will be prompted for access. After entering admin as user and your own chosen password, you should finally access to the traefik dashboard !
![Traefik Dashboard](/traefik-dashboard.png) ![Traefik Dashboard](traefik-dashboard.png)
### Portainer ### Portainer

Binary file not shown.

After

Width:  |  Height:  |  Size: 228 KiB

View File

@ -4,6 +4,6 @@ module.exports = {
"./content/**/*.{html,md}", "./content/**/*.{html,md}",
], ],
safelist: [ safelist: [
'sm:flex-row', 'lg:flex-row' 'sm:flex-row', 'lg:flex-row', 'lg:hidden'
], ],
}; };