Merge pull request #324 from ahmadhusein17/Development

Fix footer that is too long.
This commit is contained in:
iBNu Maksum 2024-10-18 13:33:28 +07:00 committed by GitHub
commit 169a7afe67
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 16 additions and 5 deletions

View File

@ -3,7 +3,7 @@
{if isset($_c['CompanyFooter'])} {if isset($_c['CompanyFooter'])}
<footer class="main-footer"> <footer class="main-footer">
<div class="container-fluid"> <div class="container-fluid">
<div class="pull-center"> <div class="company">
{$_c['CompanyFooter']} {$_c['CompanyFooter']}
</div> </div>
<div class="pull-right"> <div class="pull-right">
@ -15,7 +15,7 @@
</footer> </footer>
{else} {else}
<footer class="main-footer"> <footer class="main-footer">
<div> <div class="container-fluid">
PHPNuxBill by <a href="https://github.com/hotspotbilling/phpnuxbill" rel="nofollow noreferrer noopener" PHPNuxBill by <a href="https://github.com/hotspotbilling/phpnuxbill" rel="nofollow noreferrer noopener"
target="_blank">iBNuX</a>, Theme by <a href="https://adminlte.io/" rel="nofollow noreferrer noopener" target="_blank">iBNuX</a>, Theme by <a href="https://adminlte.io/" rel="nofollow noreferrer noopener"
target="_blank">AdminLTE</a> target="_blank">AdminLTE</a>

View File

@ -124,15 +124,26 @@
padding: 15px; padding: 15px;
color: rgb(100 116 139); color: rgb(100 116 139);
border-top: 1px solid #d2d6de; border-top: 1px solid #d2d6de;
min-height: 10rem; min-height: 8rem;
} }
.main-footer .container { .main-footer .container-fluid {
background: rgb(28 36 52); background: rgb(28 36 52);
max-width: 100%;
padding-left: 15px;
padding-right: 15px;
} }
.main-footer .container .pull-right { .main-footer .container-fluid .company {
margin-bottom: 10px;
justify-content: center;
align-items: center;
}
.main-footer .container-fluid .pull-right {
background-color: rgb(28 36 52); background-color: rgb(28 36 52);
float: right;
margin-right: 15px;
} }
.panel-primary { .panel-primary {