holygrail2 1.3.44 → 1.3.46
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.
package/package.json
CHANGED
package/scss/_partials.scss
CHANGED
package/scss/base/_helpers.scss
CHANGED
|
@@ -875,9 +875,31 @@ strong {
|
|
|
875
875
|
.is-through {
|
|
876
876
|
text-decoration: line-through;
|
|
877
877
|
}
|
|
878
|
+
|
|
878
879
|
.gap-16 {
|
|
879
880
|
gap: 16px;
|
|
880
881
|
}
|
|
882
|
+
|
|
883
|
+
.gap-8 {
|
|
884
|
+
gap: 8px;
|
|
885
|
+
}
|
|
886
|
+
|
|
887
|
+
.column-gap-16 {
|
|
888
|
+
column-gap: 16px;
|
|
889
|
+
}
|
|
890
|
+
|
|
891
|
+
.column-gap-8 {
|
|
892
|
+
column-gap: 8px;
|
|
893
|
+
}
|
|
894
|
+
|
|
895
|
+
.row-gap-16 {
|
|
896
|
+
row-gap: 16px;
|
|
897
|
+
}
|
|
898
|
+
|
|
899
|
+
.row-gap-8 {
|
|
900
|
+
row-gap: 8px;
|
|
901
|
+
}
|
|
902
|
+
|
|
881
903
|
.bg-primary-3 {
|
|
882
904
|
background-color: $c-primary-3;
|
|
883
905
|
}
|
|
@@ -1022,6 +1044,21 @@ strong {
|
|
|
1022
1044
|
flex-grow: 0;
|
|
1023
1045
|
}
|
|
1024
1046
|
|
|
1047
|
+
.shrink {
|
|
1048
|
+
flex-shrink: 1;
|
|
1049
|
+
}
|
|
1050
|
+
.shrink-0 {
|
|
1051
|
+
flex-shrink: 0;
|
|
1052
|
+
}
|
|
1053
|
+
|
|
1054
|
+
.basis-auto {
|
|
1055
|
+
flex-basis: auto;
|
|
1056
|
+
}
|
|
1057
|
+
|
|
1058
|
+
.basis-full {
|
|
1059
|
+
flex-basis: 100%;
|
|
1060
|
+
}
|
|
1061
|
+
|
|
1025
1062
|
.no-cursor {
|
|
1026
1063
|
cursor: default;
|
|
1027
1064
|
}
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
--md-drawer-padding-inline: 20px;
|
|
24
24
|
|
|
25
25
|
@media (min-width: $break-sm) {
|
|
26
|
-
--md-drawer-padding-inline:
|
|
26
|
+
--md-drawer-padding-inline: 40px;
|
|
27
27
|
}
|
|
28
28
|
|
|
29
29
|
align-items: stretch;
|
|
@@ -59,30 +59,32 @@
|
|
|
59
59
|
}
|
|
60
60
|
}
|
|
61
61
|
|
|
62
|
-
.btn.btn-drawer-close {
|
|
62
|
+
.btn.md-btn-drawer-close {
|
|
63
|
+
align-items: center;
|
|
63
64
|
align-self: flex-start;
|
|
64
|
-
margin-inline-start: auto;
|
|
65
|
-
width: auto;
|
|
66
|
-
height: auto;
|
|
67
|
-
min-height: 32px;
|
|
68
|
-
min-width: 32px;
|
|
69
65
|
display: flex;
|
|
70
66
|
flex-flow: column nowrap;
|
|
67
|
+
height: auto;
|
|
71
68
|
justify-content: center;
|
|
72
|
-
|
|
69
|
+
margin-block: 0;
|
|
70
|
+
margin-inline-start: auto;
|
|
71
|
+
margin-inline: auto 0;
|
|
72
|
+
min-height: 32px;
|
|
73
|
+
min-width: 32px;
|
|
73
74
|
padding: 0;
|
|
74
|
-
|
|
75
|
+
width: auto;
|
|
75
76
|
}
|
|
76
77
|
|
|
77
78
|
.md-drawer-body {
|
|
79
|
+
align-items: stretch;
|
|
80
|
+
display: flex;
|
|
81
|
+
flex-flow: column nowrap;
|
|
78
82
|
flex: 1 1 auto;
|
|
83
|
+
justify-content: flex-start;
|
|
79
84
|
overflow-y: auto;
|
|
80
85
|
padding-block: 24px;
|
|
81
86
|
padding-inline: var(--md-drawer-padding-inline);
|
|
82
87
|
|
|
83
|
-
@media (min-width: $break-sm) {
|
|
84
|
-
padding-block: 40px;
|
|
85
|
-
}
|
|
86
88
|
}
|
|
87
89
|
|
|
88
90
|
.md-drawer-footer {
|
|
@@ -93,27 +95,16 @@
|
|
|
93
95
|
justify-content: flex-start;
|
|
94
96
|
padding-block: 16px;
|
|
95
97
|
padding-inline: var(--md-drawer-padding-inline);
|
|
96
|
-
row-gap: 16px;
|
|
97
|
-
|
|
98
|
-
md-drawer-close,
|
|
99
|
-
md-button {
|
|
100
|
-
display: inline-flex;
|
|
101
|
-
flex-flow: column nowrap;
|
|
102
|
-
justify-content: center;
|
|
103
|
-
align-items: stretch;
|
|
104
|
-
|
|
105
|
-
.btn {
|
|
106
|
-
width: auto;
|
|
107
|
-
max-width: none;
|
|
108
|
-
min-width: auto;
|
|
109
|
-
}
|
|
110
|
-
}
|
|
111
98
|
}
|
|
112
99
|
|
|
113
100
|
.md-drawer-footer-action {
|
|
114
101
|
flex: 1 1 auto;
|
|
115
102
|
}
|
|
116
103
|
|
|
104
|
+
.md-drawer-close {
|
|
105
|
+
display: contents;
|
|
106
|
+
}
|
|
107
|
+
|
|
117
108
|
.md-drawer.md-drawer-sm {
|
|
118
109
|
width: 424px;
|
|
119
110
|
}
|
|
@@ -122,20 +113,11 @@
|
|
|
122
113
|
width: 720px;
|
|
123
114
|
}
|
|
124
115
|
|
|
125
|
-
.md-drawer
|
|
116
|
+
.md-drawer.md-drawer-reset {
|
|
117
|
+
.md-drawer-body,
|
|
126
118
|
.md-drawer-footer {
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
flex-flow: row nowrap;
|
|
130
|
-
justify-content: flex-start;
|
|
131
|
-
padding: 0;
|
|
132
|
-
gap: 0;
|
|
133
|
-
|
|
134
|
-
md-drawer-close,
|
|
135
|
-
md-button {
|
|
136
|
-
flex: 1 1 0;
|
|
137
|
-
min-width: 0; /* evita overflow si el texto es largo */
|
|
138
|
-
}
|
|
119
|
+
--md-drawer-padding-inline: 0;
|
|
120
|
+
padding-block: 0;
|
|
139
121
|
}
|
|
140
122
|
}
|
|
141
123
|
|