surrounding text aligns correctly

This commit is contained in:
Godfrey M 2023-04-17 12:44:06 -07:00
parent 247c881d87
commit aabd5e92a8
2 changed files with 11 additions and 9 deletions

View file

@ -141,6 +141,9 @@ a.accordion-header {
.dropdown-menu li a { .dropdown-menu li a {
//color: inherit; //color: inherit;
} }
.pull-text-right{
text-align: right; !important;
}
.main-header .sidebar-toggle:before { .main-header .sidebar-toggle:before {
content: "\f0c9"; content: "\f0c9";

View file

@ -851,11 +851,11 @@
</div><!-- /.content-wrapper --> </div><!-- /.content-wrapper -->
@if ($snipeSettings->footer_text!='') @if ($snipeSettings->footer_text!='')
<footer class="main-footer hidden-print" style="display:flex;flex-direction:row;" > <footer class="main-footer hidden-print" style="display:grid;flex-direction:row;" >
@else @else
<footer class="main-footer hidden-print"> <footer class="main-footer hidden-print">
@endif @endif
<div class="pull-right hidden-xs"> <div class="pull-text-right hidden-xs">
@if ($snipeSettings->version_footer!='off') @if ($snipeSettings->version_footer!='off')
@if (($snipeSettings->version_footer=='on') || (($snipeSettings->version_footer=='admin') && (Auth::user()->isSuperUser()=='1'))) @if (($snipeSettings->version_footer=='on') || (($snipeSettings->version_footer=='admin') && (Auth::user()->isSuperUser()=='1')))
&nbsp; <strong>Version</strong> {{ config('version.app_version') }} - &nbsp; <strong>Version</strong> {{ config('version.app_version') }} -
@ -878,19 +878,18 @@
href="{{ $snipeSettings->privacy_policy_link }}" href="{{ $snipeSettings->privacy_policy_link }}"
target="_new" >{{ trans('admin/settings/general.privacy_policy') }}</a> target="_new" >{{ trans('admin/settings/general.privacy_policy') }}</a>
@endif @endif
made with <i class="fas fa-heart" style="color: #a94442; font-size: 10px" aria-hidden="true"></i><span
class="sr-only">love</span> by <a href="https://twitter.com/snipeitapp" rel="noopener">@snipeitapp</a>.
</div> </div>
<div class="pull-text-right"><a target="_blank" href="https://snipeitapp.com" rel="noopener">Snipe-IT</a> is open source software,</div>
@if ($snipeSettings->footer_text!='') @if ($snipeSettings->footer_text!='')
<div class="pull-right" style="display: flex;flex-direction: row;"> <div style="flex-direction: row;">
{!! Helper::parseEscapedMarkedown($snipeSettings->footer_text) !!} {!! Helper::parseEscapedMarkedown($snipeSettings->footer_text) !!}
</div> </div>
@endif @endif
<br>
<a target="_blank" href="https://snipeitapp.com" rel="noopener">Snipe-IT</a> is open source software,
made with <i class="fas fa-heart" style="color: #a94442; font-size: 10px" aria-hidden="true"></i><span
class="sr-only">love</span> by <a href="https://twitter.com/snipeitapp" rel="noopener">@snipeitapp</a>.
</footer> </footer>