Skip to content

Commit

Permalink
Merge pull request #15890 from Godmartinz/mobile-view-fix
Browse files Browse the repository at this point in the history
Mobile view fix
  • Loading branch information
snipe authored Nov 26, 2024
2 parents 37e091a + 15c9df0 commit fa80716
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
7 changes: 6 additions & 1 deletion resources/assets/less/overrides.less
Original file line number Diff line number Diff line change
Expand Up @@ -876,7 +876,6 @@ th.css-component > .th-inner::before
}
@media screen and (max-width: 992px){
.info-stack-container {
display: flex;
flex-direction: column;
}
.col-md-3.col-xs-12.col-sm-push-9.info-stack{
Expand All @@ -892,6 +891,12 @@ th.css-component > .th-inner::before
float:none;
}
}
@media screen and (max-width: 992px){
.row-new-striped div{
width:100%;
}
}

@media screen and (max-width: 1318px) and (min-width: 1200px){
.admin.box{
height:170px;
Expand Down
6 changes: 3 additions & 3 deletions resources/views/users/view.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -309,10 +309,10 @@
<div class="row">
<!-- name -->

<div class="col-md-3 col-sm-2">
<div class="col-md-3">
{{ trans('admin/users/table.name') }}
</div>
<div class="col-md-9 col-sm-2">
<div class="col-md-9">
{{ $user->present()->fullName() }}
</div>

Expand Down Expand Up @@ -751,7 +751,7 @@
{{Helper::formatCurrencyOutput($user->getUserTotalCost()->total_user_cost)}}

<a id="optional_info" class="text-primary">
<x-icon type="caret-right" id="optional_info_icon" /></i>
<x-icon type="caret-right" id="optional_info_icon" />
<strong>{{ trans('admin/hardware/form.optional_infos') }}</strong>
</a>
</div>
Expand Down

0 comments on commit fa80716

Please sign in to comment.