Showing
1 changed file
with
17 additions
and
0 deletions
| ... | @@ -15,6 +15,23 @@ | ... | @@ -15,6 +15,23 @@ |
| 15 | <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/jquery-datetime-picker@2.5.11/jquery.datetimepicker.min.css"> | 15 | <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/jquery-datetime-picker@2.5.11/jquery.datetimepicker.min.css"> |
| 16 | <script src="https://cdnjs.cloudflare.com/ajax/libs/axios/1.6.8/axios.min.js"></script> | 16 | <script src="https://cdnjs.cloudflare.com/ajax/libs/axios/1.6.8/axios.min.js"></script> |
| 17 | <script src="{{ asset("assets/js/vue.min.js") }}"></script> | 17 | <script src="{{ asset("assets/js/vue.min.js") }}"></script> |
| 18 | + <style type="text/css"> | ||
| 19 | + .loading { | ||
| 20 | + width: 100%; | ||
| 21 | + position: absolute; | ||
| 22 | + background-color: rgb(0 0 0 / 23%); | ||
| 23 | + height: 100%; | ||
| 24 | + z-index: 999; | ||
| 25 | + } | ||
| 26 | + .spinner-container { | ||
| 27 | + position: absolute; | ||
| 28 | + top: 50vh; | ||
| 29 | + left: 50%; | ||
| 30 | + transform: translate(-50%, -50%); | ||
| 31 | + width: 100px; | ||
| 32 | + height: 100px; | ||
| 33 | + } | ||
| 34 | + </style> | ||
| 18 | </head> | 35 | </head> |
| 19 | <body id="adminlte" class="hold-transition sidebar-mini sidebar-collapse layout-fixed custom-scrollbar sidebar-collapse"> | 36 | <body id="adminlte" class="hold-transition sidebar-mini sidebar-collapse layout-fixed custom-scrollbar sidebar-collapse"> |
| 20 | <div class="wrapper"> | 37 | <div class="wrapper"> | ... | ... |
-
Please register or sign in to post a comment