onecentlin / laravel-blade-snippets-vscode

Laravel blade snippets and syntax highlight support for Visual Studio Code
MIT License
136 stars 38 forks source link

highlighting doesn't work within <style> tag #173

Open adrianriyadi opened 12 months ago

adrianriyadi commented 12 months ago

there's no further explanation, it's all shown in screenshot

image

musuyaba commented 7 months ago

my current solution


@section('page-styles')
    <link rel="stylesheet" type="text/css" href="{{ asset('css/plugins/extensions/swiper.css') }}">

    @guest
        <style>
            body {
                padding: 1rem;
            }
        </style>
    @endguest
    <style>
        .img-fluid {
            height: 65vh;
            display: block;
            margin: 0 auto;
        }

        .card {
            margin-bottom: 0.75rem !important;
        }
    </style>
@endsection