Laravel 11, Vuexy Admin 10.3, by admin@koneko.mx

This commit is contained in:
2025-01-25 04:23:40 -06:00
parent c3045b43b1
commit 64d505910f
1283 changed files with 140198 additions and 0 deletions

View File

@ -0,0 +1,6 @@
// ===================================================================================================================
// ? TIP: It is recommended to use this file for overriding bootstrap extended dark variables (_bootstrap-extended/_variables-dark.scss).
// Copy and paste variables as needed, modify their values, and remove the !default flag.
// ===================================================================================================================
// $success: #f0f000 !default;

View File

@ -0,0 +1,7 @@
// ===================================================================================================================
// ? TIP: It is recommended to use this file for overriding bootstrap extended variables (_bootstrap-extended/_variables.scss).
// Copy and paste variables as needed, modify their values, and remove the !default flag.
// ===================================================================================================================
// $font-size-root: 14px !default;
// $success: #00ff00 !default;

View File

@ -0,0 +1,5 @@
// ==========================================================================================================
// ? TIP: It is recommended to use this file for overriding component dark variables (_components/_variables-dark.scss).
// Copy and paste variables as needed, modify their values, and remove the !default flag.
// ==========================================================================================================
// $menu-width: 18rem !default;

View File

@ -0,0 +1,6 @@
// ================================================================================================
// ? TIP: It is recommended to use this file for overriding component variables (_components/_variables.scss).
// Copy and paste variables as needed, modify their values, and remove the !default flag.
// ================================================================================================
// $menu-width: 14rem !default;

View File

@ -0,0 +1,8 @@
// ================================================================================================
// ? TIP: It is recommended to use this file for overriding any library variables from (libs/) folder.
// Copy and paste variables as needed, modify their values, and remove the !default flag.
// ================================================================================================
@import 'support';
// $flatpickr-content-padding: 0.5rem;

View File

@ -0,0 +1,8 @@
// ================================================================================================
// ? TIP: It is recommended to use this file for overriding any pages variables from the (pages/) folder.
// Copy and paste variables as needed, modify their values, and remove the !default flag.
// ================================================================================================
@import 'support';
// $calender-sidebar-width: 20rem;

View File

@ -0,0 +1,51 @@
$enable-light-style: true;
$enable-dark-style: true;
$enable-rtl-support: true;
@mixin app-ltr($has-child: true) {
@if $enable-rtl-support {
@if $has-child {
html:not([dir='rtl']) & {
@content;
}
} @else {
html:not([dir='rtl']) {
@content;
}
}
} @else {
@content;
}
}
@mixin app-ltr-style() {
@if $enable-rtl-support {
&:not([dir='rtl']) {
@content;
}
} @else {
@content;
}
}
@mixin app-rtl($has-child: true) {
@if $enable-rtl-support {
@if $has-child {
[dir='rtl'] & {
@content;
}
} @else {
[dir='rtl'] {
@content;
}
}
}
}
@mixin app-rtl-style() {
@if $enable-rtl-support {
&[dir='rtl'] {
@content;
}
}
}