@rolatech/angular-components 20.3.1-beta.3 → 20.3.2-beta.1
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 +3 -3
- package/themes/_default.scss +10 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rolatech/angular-components",
|
|
3
|
-
"version": "20.3.
|
|
3
|
+
"version": "20.3.2-beta.1",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "rolatech angular components",
|
|
6
6
|
"repository": {
|
|
@@ -31,8 +31,8 @@
|
|
|
31
31
|
"lodash": "^4.17.21"
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@rolatech/angular-common": "20.3.
|
|
35
|
-
"@rolatech/angular-services": "20.3.
|
|
34
|
+
"@rolatech/angular-common": "20.3.2-beta.1",
|
|
35
|
+
"@rolatech/angular-services": "20.3.2-beta.1",
|
|
36
36
|
"tslib": "^2.3.0"
|
|
37
37
|
},
|
|
38
38
|
"exports": {
|
package/themes/_default.scss
CHANGED
|
@@ -3042,11 +3042,6 @@
|
|
|
3042
3042
|
justify-content: flex-end;
|
|
3043
3043
|
}
|
|
3044
3044
|
}
|
|
3045
|
-
.md\:gap-3 {
|
|
3046
|
-
@media (width >= 768px) {
|
|
3047
|
-
gap: calc(var(--spacing) * 3);
|
|
3048
|
-
}
|
|
3049
|
-
}
|
|
3050
3045
|
.md\:gap-4 {
|
|
3051
3046
|
@media (width >= 768px) {
|
|
3052
3047
|
gap: calc(var(--spacing) * 4);
|
|
@@ -3391,6 +3386,16 @@
|
|
|
3391
3386
|
grid-template-columns: minmax(0,1.2fr) minmax(0,0.8fr);
|
|
3392
3387
|
}
|
|
3393
3388
|
}
|
|
3389
|
+
.xl\:grid-cols-\[minmax\(0\,1\.2fr\)_minmax\(320px\,0\.8fr\)\] {
|
|
3390
|
+
@media (width >= 1280px) {
|
|
3391
|
+
grid-template-columns: minmax(0,1.2fr) minmax(320px,0.8fr);
|
|
3392
|
+
}
|
|
3393
|
+
}
|
|
3394
|
+
.xl\:grid-cols-\[minmax\(0\,1\.3fr\)_minmax\(320px\,0\.7fr\)\] {
|
|
3395
|
+
@media (width >= 1280px) {
|
|
3396
|
+
grid-template-columns: minmax(0,1.3fr) minmax(320px,0.7fr);
|
|
3397
|
+
}
|
|
3398
|
+
}
|
|
3394
3399
|
.xl\:grid-cols-\[minmax\(0\,1fr\)_360px\] {
|
|
3395
3400
|
@media (width >= 1280px) {
|
|
3396
3401
|
grid-template-columns: minmax(0,1fr) 360px;
|