bundled all js in production.js manually
parent
81e96ce64e
commit
ecc1806b65
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -1,4 +1,6 @@
|
||||||
<link href="{{storage('assets/libs/bootstrap-5.3.0/bootstrap.min.css')}}" rel="stylesheet" integrity="sha384-9ndCyUaIbzAi2FUVXJi0CjmCapSmO7SnpJef0486qhLnuZ2cdeRhO02iuK6FUUVM" crossorigin="anonymous">
|
<link href="{{storage('assets/libs/bootstrap-5.3.0/bootstrap.min.css')}}" rel="stylesheet" integrity="sha384-9ndCyUaIbzAi2FUVXJi0CjmCapSmO7SnpJef0486qhLnuZ2cdeRhO02iuK6FUUVM" crossorigin="anonymous">
|
||||||
|
<link href="{{storage('assets/libs/aos.css')}}" rel="stylesheet">
|
||||||
|
|
||||||
<style>
|
<style>
|
||||||
|
|
||||||
body{
|
body{
|
||||||
|
@ -88,6 +90,12 @@
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.btn-check:checked + .btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check) + .btn:active{
|
||||||
|
background-color: {{$_primary_ci_color}};
|
||||||
|
border-color: {{$_primary_ci_color}};
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
.nav-item{
|
.nav-item{
|
||||||
margin-right: 40px;
|
margin-right: 40px;
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,5 +1,18 @@
|
||||||
|
|
||||||
|
<!--
|
||||||
|
All in production
|
||||||
|
|
||||||
|
|
||||||
<script src="{{storage('assets/libs/jquery-3.3.1.min.js')}}"></script>
|
<script src="{{storage('assets/libs/jquery-3.3.1.min.js')}}"></script>
|
||||||
<script src="{{storage('assets/libs/bootstrap-5.3.0/bootstrap.bundle.min.js')}}" integrity="sha384-geWF76RCwLtnZ8qwWowPQNguL3RmwHVBC9FhGdlKrxdiJJigb/j/68SIy3Te4Bkz" crossorigin="anonymous"></script>
|
<script src="{{storage('assets/libs/bootstrap-5.3.0/bootstrap.min.js')}}"></script>
|
||||||
<script src="{{storage('assets/libs/js-cookie-3.0.1.min.js')}}"></script>
|
<script src="{{storage('assets/libs/js-cookie-3.0.1.min.js')}}"></script>
|
||||||
<script src="{{storage('assets/js/components/cookies-consent.js')}}"></script>
|
<script src="{{storage('assets/js/components/cookies-consent.js')}}"></script>
|
||||||
<!-- <script type="module" src="{{storage('assets/js/main.js')}}"></script> -->
|
<script src="{{storage('assets/libs/aos.js')}}"></script>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script type="module" src="{{storage('assets/js/main.js')}}"></script> -->
|
||||||
|
|
||||||
|
|
||||||
|
<script src="{{storage('assets/libs/production.js')}}"></script>
|
||||||
|
|
|
@ -11,8 +11,6 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="https://unpkg.com/aos@next/dist/aos.css" />
|
|
||||||
<script src="https://unpkg.com/aos@next/dist/aos.js"></script>
|
|
||||||
|
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
|
Loading…
Reference in New Issue