mis-crystal-design-system 18.1.10-test → 18.1.10-test-2

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,46 +0,0 @@
1
-
2
- @mixin text-ellipsis {
3
- overflow: hidden;
4
- text-overflow: ellipsis;
5
- white-space: nowrap;
6
- }
7
-
8
- @mixin flexStyle(
9
- $align_items: center,
10
- $justify_content: center,
11
- $flex-direction: row
12
- ) {
13
- display: flex;
14
- flex-direction: $flex-direction;
15
- align-items: $align_items;
16
- justify-content: $justify_content;
17
- }
18
-
19
- @mixin grid-container(
20
- $columns: auto,
21
- $rows: auto,
22
- $gap: 0,
23
- $justify-items: start,
24
- $align-items: start
25
- ) {
26
- display: grid;
27
- grid-template-columns: $columns;
28
- grid-template-rows: $rows;
29
- gap: $gap;
30
- justify-items: $justify-items;
31
- align-items: $align-items;
32
- }
33
-
34
- // Usage Example for mixins
35
-
36
- // .container {
37
- // @include grid-container(
38
- // 1fr 1fr 1fr, // 3 columns of equal width
39
- // auto, // Rows will adjust based on content
40
- // 16px, // Gap between grid items
41
- // center, // Center items horizontally
42
- // center // Center items vertically
43
- // );
44
- // }
45
-
46
-
File without changes