Skip to content

Commit 4f78838

Browse files
committed
Updated icons with height
Fixes issues within IE
1 parent 23f90ed commit 4f78838

File tree

6 files changed

+5
-2
lines changed

6 files changed

+5
-2
lines changed

resources/assets/sass/_buttons.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -158,6 +158,7 @@ $button-border-radius: 2px;
158158
left: $-m;
159159
top: $-s - 2px;
160160
width: 24px;
161+
height: 24px;
161162
}
162163
padding: $-s $-m;
163164
padding-bottom: $-s - 2px;

resources/assets/sass/_components.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
svg {
2424
fill: #EEEEEE;
2525
width: 4em;
26+
height: 4em;
2627
padding-right: $-m;
2728
}
2829
span {

resources/assets/sass/_text.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -424,6 +424,7 @@ i {
424424

425425
.svg-icon {
426426
width: 1em;
427+
height: 1em;
427428
display: inline-block;
428429
position: relative;
429430
bottom: -0.105em;

resources/assets/sass/styles.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -118,6 +118,7 @@ $btt-size: 40px;
118118
fill: #FFF;
119119
svg {
120120
width: $btt-size / 1.5;
121+
height: $btt-size / 1.5;
121122
margin-right: 4px;
122123
}
123124
width: $btt-size;

resources/views/public.blade.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414
<link rel="stylesheet" media="print" href="{{ versioned_asset('dist/print-styles.css') }}">
1515

1616
<!-- Scripts -->
17-
<script src="{{ baseUrl("/libs/jquery/jquery.min.js?version=2.1.4") }}"></script>
1817
@include('partials/custom-styles')
1918

2019
<!-- Custom user content -->

resources/views/users/edit.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@
6565
<div class="row">
6666
@foreach($activeSocialDrivers as $driver => $enabled)
6767
<div class="col-sm-4 col-xs-6 text-center">
68-
<div>@icon('auth/'. $driver, ['style' => 'width: 56px;'])</div>
68+
<div>@icon('auth/'. $driver, ['style' => 'width: 56px;height: 56px;'])</div>
6969
<div>
7070
@if($user->hasSocialAccount($driver))
7171
<a href="{{ baseUrl("/login/service/{$driver}/detach") }}" class="button neg">{{ trans('settings.users_social_disconnect') }}</a>

0 commit comments

Comments
 (0)