mirror of
https://github.com/alextselegidis/easyappointments.git
synced 2024-11-08 17:12:25 +03:00
Improved display of booking page footer for desktop viewports
This commit is contained in:
parent
7a05fc9d48
commit
8dd346c90e
2 changed files with 35 additions and 8 deletions
|
@ -377,17 +377,21 @@
|
||||||
|
|
||||||
<div id="frame-footer">
|
<div id="frame-footer">
|
||||||
<small>
|
<small>
|
||||||
Powered By
|
<span class="footer-powered-by">
|
||||||
|
Powered By
|
||||||
|
|
||||||
<a href="https://easyappointments.org" target="_blank">Easy!Appointments</a>
|
<a href="https://easyappointments.org" target="_blank">Easy!Appointments</a>
|
||||||
|
</span>
|
||||||
|
|
||||||
<span id="select-language" class="badge badge-success">
|
<span class="footer-options">
|
||||||
<?= ucfirst(config('language')) ?>
|
<span id="select-language" class="badge badge-success">
|
||||||
</span>
|
<?= ucfirst(config('language')) ?>
|
||||||
|
</span>
|
||||||
|
|
||||||
<a href="<?= site_url('backend'); ?>">
|
<a class="backend-link" href="<?= site_url('backend'); ?>">
|
||||||
<?= $this->session->user_id ? lang('backend_section') : lang('login') ?>
|
<?= $this->session->user_id ? lang('backend_section') : lang('login') ?>
|
||||||
</a>
|
</a>
|
||||||
|
</span>
|
||||||
</small>
|
</small>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -312,6 +312,29 @@ body {
|
||||||
padding: 5px;
|
padding: 5px;
|
||||||
margin: 5px auto;
|
margin: 5px auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#book-appointment-wizard #frame-footer small {
|
||||||
|
display: flex;
|
||||||
|
}
|
||||||
|
|
||||||
|
#book-appointment-wizard .footer-powered-by,
|
||||||
|
#book-appointment-wizard .footer-options {
|
||||||
|
width: 50%;
|
||||||
|
}
|
||||||
|
|
||||||
|
#book-appointment-wizard .footer-powered-by {
|
||||||
|
text-align: left;
|
||||||
|
padding: 5px 5px 5px 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
#book-appointment-wizard .footer-options {
|
||||||
|
text-align: right;
|
||||||
|
}
|
||||||
|
|
||||||
|
#book-appointment-wizard #select-language {
|
||||||
|
display: inline-block;
|
||||||
|
margin-right: 10px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* BOOK SUCCESS & MESSAGE
|
/* BOOK SUCCESS & MESSAGE
|
||||||
|
|
Loading…
Reference in a new issue