Skip to content

Commit

Permalink
feat (theme): stripe breakpoints units
Browse files Browse the repository at this point in the history
  • Loading branch information
n-langle committed Sep 23, 2024
1 parent 7ccd848 commit fd9dd92
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/scss/01-abstract/_variables.scss
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
@use "sass:map";
@use "sass:math";

/**
* Variables
Expand Down Expand Up @@ -133,8 +134,8 @@ $breakpoints: (
admin-bar: 784, // admin bar height change
md: 1024,
mdl: 1200,
container-default: $container-default + $external-gutter-mobile * 2,
container-wide: $container-wide + $external-gutter * 2,
container-default: math.div($container-default + $external-gutter-mobile * 2, 1px),
container-wide: math.div($container-wide + $external-gutter * 2, 1px),
);
// /!\ WARNING: If you use a breakpoint of 1280px, it causes a bug under Window Edge with a device pixel ratio higher than 1. Prefer to use the value 1279px.

Expand Down

0 comments on commit fd9dd92

Please sign in to comment.