Laravel framework and javascript modules update
This commit is contained in:
4
resources/themes/architect/src/base.scss
vendored
4
resources/themes/architect/src/base.scss
vendored
@@ -1,9 +1,9 @@
|
||||
/*!
|
||||
=========================================================
|
||||
* ArchitectUI HTML Theme Dashboard - v4.0.0
|
||||
* ArchitectUI HTML Theme Dashboard - v4.1.0
|
||||
=========================================================
|
||||
* Product Page: https://dashboardpack.com
|
||||
* Copyright 2023 DashboardPack (https://dashboardpack.com)
|
||||
* Copyright 2025 DashboardPack (https://dashboardpack.com)
|
||||
* Licensed under MIT (https://github.com/DashboardPack/architectui-html-theme-free/blob/master/LICENSE)
|
||||
=========================================================
|
||||
* The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
||||
|
22
resources/themes/architect/src/utils/_animate-override.scss
vendored
Normal file
22
resources/themes/architect/src/utils/_animate-override.scss
vendored
Normal file
@@ -0,0 +1,22 @@
|
||||
@use "sass:math";
|
||||
|
||||
@if $use-lightSpeedIn == true {
|
||||
@-webkit-keyframes lightSpeedIn {
|
||||
0% { -webkit-transform: translateX(100%) skewX(-$base-degrees); opacity: 0; }
|
||||
60% { -webkit-transform: translateX(-20%) skewX($base-degrees); opacity: 1; }
|
||||
80% { -webkit-transform: translateX(0%) skewX(calc(-1 * $base-degrees / 2)); opacity: 1; }
|
||||
100% { -webkit-transform: translateX(0%) skewX(0deg); opacity: 1; }
|
||||
}
|
||||
|
||||
@keyframes lightSpeedIn {
|
||||
0% { transform: translateX(100%) skewX(-$base-degrees); opacity: 0; }
|
||||
60% { transform: translateX(-20%) skewX($base-degrees); opacity: 1; }
|
||||
80% { transform: translateX(0%) skewX(calc(-1 * $base-degrees / 2)); opacity: 1; }
|
||||
100% { transform: translateX(0%) skewX(0deg); opacity: 1; }
|
||||
}
|
||||
|
||||
.lightSpeedIn {
|
||||
@include animate-prefixer(animation-name, lightSpeedIn);
|
||||
@include animate-prefixer(animation-timing-function, $base-timing-function-out);
|
||||
}
|
||||
}
|
@@ -58,8 +58,7 @@ $use-all: true;
|
||||
"~animate-sass/animations/flippers/flipOutY";
|
||||
|
||||
// LIGHTSPEED
|
||||
@import "~animate-sass/animations/lightspeed/lightSpeedIn",
|
||||
"~animate-sass/animations/lightspeed/lightSpeedOut";
|
||||
@import "./_animate-override";
|
||||
|
||||
// ROTATE
|
||||
@import "~animate-sass/animations/rotate-enter/rotateIn",
|
||||
@@ -98,4 +97,4 @@ $use-all: true;
|
||||
"~animate-sass/animations/zoom-exit/zoomOutDown",
|
||||
"~animate-sass/animations/zoom-exit/zoomOutLeft",
|
||||
"~animate-sass/animations/zoom-exit/zoomOutRight",
|
||||
"~animate-sass/animations/zoom-exit/zoomOutUp";
|
||||
"~animate-sass/animations/zoom-exit/zoomOutUp";
|
||||
|
Reference in New Issue
Block a user