Merge pull request #3019 from mervekaraman/master

Issue with headers pushing descriptions
This commit is contained in:
Cüneyt Şentürk 2023-08-11 14:26:08 +03:00 committed by GitHub
commit 403a28d52e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 5 deletions

View File

@ -805,7 +805,7 @@ html[dir='rtl'] .print-heading {
vertical-align: top; vertical-align: top;
} }
@media (max-width: 480px) { @media only screen and (min-width: 1024px) and (max-width: 1536px) {
.col-60 { .col-60 {
display: inline-block; display: inline-block;
width: 50%; width: 50%;

View File

@ -65,7 +65,7 @@
<x-tooltip id="tooltip-notifications" placement="right" message="{{ trans_choice('general.notifications', 2) }}"> <x-tooltip id="tooltip-notifications" placement="right" message="{{ trans_choice('general.notifications', 2) }}">
<button type="button" <button type="button"
@class([ @class([
'flex items-center menu-button justify-center w-8 h-8 mb-2.5 relative cursor-pointer js-menu-toggles', 'flex items-center menu-button justify-center w-8 h-8 mb-2.5 relative cursor-pointer js-menu-toggles outline-none',
'animate-vibrate' => $notification_count, 'animate-vibrate' => $notification_count,
]) ])
data-menu="notifications-menu" data-menu="notifications-menu"
@ -82,7 +82,7 @@
@endcan @endcan
<x-tooltip id="tooltip-search" placement="right" message="{{ trans('general.search') }}"> <x-tooltip id="tooltip-search" placement="right" message="{{ trans('general.search') }}">
<button type="button" class="flex items-center menu-button justify-center w-8 h-8 mb-2.5 relative cursor-pointer"> <button type="button" class="flex items-center menu-button justify-center w-8 h-8 mb-2.5 relative cursor-pointer outline-none">
<span id="menu-search-icon" name="search" class="material-icons-outlined text-purple text-2xl pointer-events-none">search</span> <span id="menu-search-icon" name="search" class="material-icons-outlined text-purple text-2xl pointer-events-none">search</span>
</button> </button>
</x-tooltip> </x-tooltip>

View File

@ -49,7 +49,7 @@
<x-tooltip id="tooltip-notifications" placement="right" message="{{ trans_choice('general.notifications', 2) }}"> <x-tooltip id="tooltip-notifications" placement="right" message="{{ trans_choice('general.notifications', 2) }}">
<button type="button" <button type="button"
@class([ @class([
'flex items-center menu-button justify-center w-8 h-8 mb-2.5 relative cursor-pointer js-menu-toggles', 'flex items-center menu-button justify-center w-8 h-8 mb-2.5 relative cursor-pointer js-menu-toggles outline-none',
'animate-vibrate' => user()->unreadNotifications->count(), 'animate-vibrate' => user()->unreadNotifications->count(),
]) ])
data-menu="notifications-menu"> data-menu="notifications-menu">
@ -65,7 +65,7 @@
@endcan @endcan
<x-tooltip id="tooltip-search" placement="right" message="{{ trans('general.search') }}"> <x-tooltip id="tooltip-search" placement="right" message="{{ trans('general.search') }}">
<button type="button" class="flex items-center menu-button justify-center w-8 h-8 mb-2.5 relative cursor-pointer"> <button type="button" class="flex items-center menu-button justify-center w-8 h-8 mb-2.5 relative cursor-pointer outline-none">
<span name="search" class="material-icons-outlined text-purple text-2xl pointer-events-none">search</span> <span name="search" class="material-icons-outlined text-purple text-2xl pointer-events-none">search</span>
</button> </button>
</x-tooltip> </x-tooltip>