@bitstack/ng-boundary 14.0.1-alpha.5 → 14.0.1-alpha.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,29 +0,0 @@
1
- @use "sass:math";
2
-
3
- // 基礎尺寸 (無單位數值)
4
- $design-width: 540;
5
- $design-height: 960;
6
-
7
- // 帶單位的版本 (當需要 px 單位時使用)
8
- $design-width-px: #{$design-width}px;
9
- $design-height-px: #{$design-height}px;
10
-
11
- $landscape-ratio: math.div($design-width, $design-height);
12
- $portrait-ratio: math.div($design-height, $design-width);
13
-
14
- // Portrait 模式的設計基準
15
- $layout-portrait-width: $design-width; // 375
16
- $layout-portrait-height: $design-height; // 667
17
-
18
- // Landscape 模式的設計基準
19
- $layout-landscape-width: $design-height; // 667
20
- $layout-landscape-height: $design-width; // 375
21
-
22
- $vw-unit: dvw !default;
23
- $vh-unit: dvh !default;
24
-
25
- @supports not (width: 100dvh) {
26
- $vw-unit: vw;
27
- $vh-unit: vh;
28
- }
29
-