Lucien Cartier-Tilet
7c9e8b1e5f
Replaced all text in navbar by icons, moved TOC to the right of Home button. TOC is now correctly displayed with small animation. Added black theme to light and dark themes.
10 lines
225 B
Dart
10 lines
225 B
Dart
import './reorganize_html.dart' show reorganizeHtml;
|
|
import './theme.dart' show makeThemeChanger, setTheme;
|
|
|
|
Future<void> main() async {
|
|
await setTheme();
|
|
await reorganizeHtml().then((_) {
|
|
makeThemeChanger();
|
|
});
|
|
}
|