PATH:
home
/
rwabteecom
/
project_11
/
resources
/
views
/
admin
/
partials
/
Editing: styles.blade.php
<link rel="shortcut icon" href="{{asset('backend/media/logos/favicon.ico')}}" /> <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Inter:300,400,500,600,700" /> <link rel="preconnect" href="https://fonts.googleapis.com"> <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/jquery-minicolors/2.3.6/jquery.minicolors.min.css"> <style> .minicolors-theme-bootstrap .minicolors-swatch { z-index: 2; top: 10px; left: 8px; width: 28px; height: 28px; cursor: pointer; border-radius: 2px; } .colors { display: none; cursor: pointer; } </style> @if(LaravelLocalization::getCurrentLocaleDirection() == "rtl") <link href="https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+Arabic:wght@400;500;600&display=swap" rel="stylesheet"> <link href="{{asset('backend/plugins/global/plugins.bundle.rtl.css')}}" rel="stylesheet" type="text/css" /> <link href="{{asset('backend/css/style.bundle.rtl.css')}}" rel="stylesheet" type="text/css" /> @auth() <link href="{{asset("backend/plugins/custom/datatables/datatables.bundle.rtl.css")}}" rel="stylesheet" type="text/css" /> @endauth @endif @if(LaravelLocalization::getCurrentLocaleDirection() == "ltr") <link href="https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,400;0,6..12,500;1,6..12,400;1,6..12,500&display=swap" rel="stylesheet"> <link href="{{asset('backend/plugins/global/plugins.bundle.css')}}" rel="stylesheet" type="text/css" /> <link href="{{asset('backend/css/style.bundle.css')}}" rel="stylesheet" type="text/css" /> @auth() <link href="{{asset("backend/plugins/custom/datatables/datatables.bundle.css")}}" rel="stylesheet" type="text/css" /> @endauth @endif @vite(["resources/sass/app.scss"]) @yield('styles')
SAVE
CANCEL