mirror of
https://github.com/tim-krehan/shopping-list.git
synced 2024-11-23 22:30:41 +01:00
added al little padding to the body
This commit is contained in:
parent
b5010c335a
commit
996c00307f
3 changed files with 8 additions and 3 deletions
|
@ -1,6 +1,11 @@
|
|||
<?php
|
||||
$CONFIG = array (
|
||||
'installed' => false,
|
||||
'installed' => true,
|
||||
'host' => 'localhost',
|
||||
'username' => 'shoppinglist',
|
||||
'passwd' => 'Erfolg100%',
|
||||
'database' => 'shoppinglist',
|
||||
'theme' => 'default',
|
||||
);
|
||||
|
||||
?>
|
|
@ -1,4 +1,4 @@
|
|||
<nav class="navbar navbar-inverse bg-secondary rounded-bottom pt-0 pb-0">
|
||||
<nav class="navbar navbar-inverse bg-secondary rounded-bottom fixed-top">
|
||||
<div class="container-fluid">
|
||||
|
||||
<ul class="nav navbar-left">
|
||||
|
|
|
@ -55,7 +55,7 @@ $user->get_info($_COOKIE["token"]);
|
|||
if ($site && ($site != "login")) {
|
||||
include $_SESSION["docroot"] . '/cont/nav.php';
|
||||
}
|
||||
echo '<div id="content" class="container">';
|
||||
echo '<div id="content" class="container pt-2">';
|
||||
switch ($site) {
|
||||
case "login":
|
||||
include $_SESSION["docroot"] . '/cont/login.php';
|
||||
|
|
Loading…
Reference in a new issue