mirror of
https://github.com/ArthurSonzogni/FTXUI.git
synced 2025-09-27 16:19:35 +08:00
Fix documentation image headers.
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
@page getting-started Getting Started
|
||||
@tableofcontents
|
||||
|
||||

|
||||

|
||||
|
||||
# Install FTXUI
|
||||
|
||||
|
@@ -28,6 +28,8 @@
|
||||
|
||||
window.addEventListener('DOMContentLoaded', function () {
|
||||
document.querySelectorAll(".headertitle").forEach(div => {
|
||||
|
||||
// Hide progressively the title.
|
||||
if (div.textContent != "Getting Started" &&
|
||||
div.textContent != "Installation" &&
|
||||
div.textContent != "Modules" &&
|
||||
@@ -35,8 +37,9 @@
|
||||
return;
|
||||
}
|
||||
div.style.display = "none";
|
||||
|
||||
// Show progressively the image.
|
||||
const img = document.querySelector("img.inline");
|
||||
img.style.transition = "all 1.0s ease-in-out";
|
||||
img.style.maxHeight = "40vh";
|
||||
img.style.maxWidth = "100%";
|
||||
img.style.objectFit = "contain";
|
||||
|
@@ -2,7 +2,7 @@
|
||||
@page installation Installation
|
||||
@tableofcontents
|
||||
|
||||

|
||||

|
||||
|
||||
## Overview
|
||||
|
||||
|
@@ -1,6 +1,6 @@
|
||||
# Modules {#modules}
|
||||
|
||||

|
||||

|
||||
|
||||
FTXUI is organized into three modules, each building upon the previous:
|
||||
|
||||
|
Reference in New Issue
Block a user