first commit

This commit is contained in:
2024-07-15 11:28:08 +02:00
commit f52d538ea5
21891 changed files with 6161164 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
$screen-xs-max: map_get($breakpoints, sm) - 1;
$screen-sm-min: map_get($breakpoints, sm);
// Start editable breakpoints area
@import "proxy";
// End
$screen-lg-max: map_get($breakpoints, xl) - 1;
$screen-xl-min: map_get($breakpoints, xl);
$screen-xl-max: map_get($breakpoints, xxl) - 1;
$screen-xxl-min: map_get($breakpoints, xxl);

View File

@@ -0,0 +1 @@
@import "values";

View File

@@ -0,0 +1,4 @@
$screen-sm-max: ELEMENTOR_SCREEN_MOBILE_MAX;
$screen-md-min: ELEMENTOR_SCREEN_TABLET_MIN;
$screen-md-max: ELEMENTOR_SCREEN_TABLET_MAX;
$screen-lg-min: ELEMENTOR_SCREEN_DESKTOP_MIN;

View File

@@ -0,0 +1,4 @@
$screen-sm-max: map_get($breakpoints, md) - 1;
$screen-md-min: map_get($breakpoints, md);
$screen-md-max: map_get($breakpoints, lg) - 1;
$screen-lg-min: map_get($breakpoints, lg);