Browse Source

Adds boardlist to homepage creation (top bar). Standardizes tabs or spaces in some files. Adds css rules for better mobile experience.

pull/40/head
nonmakina 3 years ago
parent
commit
9543883f9f
  1. 9
      templates/themes/categories/frames.html
  2. 4
      templates/themes/categories/theme.php

9
templates/themes/categories/frames.html

@ -54,6 +54,15 @@
@media (max-width:768px) {
.sidebar {
width: 80vw;
border: none;
}
.main {
flex-direction: column;
align-items: center;
}
.boardlist {
display: none;
}

4
templates/themes/categories/theme.php

@ -34,7 +34,9 @@
Array(
'config' => $config,
'settings' => $settings,
'categories' => Categories::getCategories($config)
'categories' => Categories::getCategories($config),
'boardlist' => createBoardlist(false)
)
);
}

Loading…
Cancel
Save