@egovernments/digit-ui-components-css 0.0.2-beta.30 → 0.0.2-beta.32
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/CHANGELOG.md +4 -0
- package/dist/index.css +18 -4
- package/dist/index.min.css +2 -2
- package/package.json +6 -5
- package/src/digitv2/components/uploaderV2.scss +2 -2
package/CHANGELOG.md
CHANGED
package/dist/index.css
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* @egovernments/digit-ui-components-css - 0.0.2-beta.
|
|
2
|
+
* @egovernments/digit-ui-components-css - 0.0.2-beta.32
|
|
3
3
|
*
|
|
4
4
|
* Copyright (c) 2024 Jagankumar <jagan.kumar@egovernments.org>
|
|
5
5
|
*
|
|
@@ -6947,6 +6947,12 @@ img {
|
|
|
6947
6947
|
to {
|
|
6948
6948
|
bottom: 4rem; } }
|
|
6949
6949
|
|
|
6950
|
+
@keyframes slideInFromBottom {
|
|
6951
|
+
0% {
|
|
6952
|
+
bottom: -100%; }
|
|
6953
|
+
to {
|
|
6954
|
+
bottom: 4rem; } }
|
|
6955
|
+
|
|
6950
6956
|
.digit-toast-success.animate {
|
|
6951
6957
|
-webkit-animation: slideInFromBottom .5s ease forwards;
|
|
6952
6958
|
animation: slideInFromBottom .5s ease forwards; }
|
|
@@ -7209,8 +7215,8 @@ img {
|
|
|
7209
7215
|
@media (max-width: 30rem) {
|
|
7210
7216
|
.digit-upload-image-drawer {
|
|
7211
7217
|
height: 7.625rem;
|
|
7212
|
-
-webkit-animation:
|
|
7213
|
-
animation:
|
|
7218
|
+
-webkit-animation: slideInFromBottomUploader .5s ease-out forwards;
|
|
7219
|
+
animation: slideInFromBottomUploader .5s ease-out forwards; } }
|
|
7214
7220
|
.digit-upload-image-drawer .capture-close {
|
|
7215
7221
|
width: 2rem;
|
|
7216
7222
|
height: 2rem;
|
|
@@ -7706,7 +7712,15 @@ img {
|
|
|
7706
7712
|
.digit-uploader-wrap .digit-upload-image-drawer {
|
|
7707
7713
|
position: relative; } }
|
|
7708
7714
|
|
|
7709
|
-
|
|
7715
|
+
@-webkit-keyframes slideInFromBottomUploader {
|
|
7716
|
+
0% {
|
|
7717
|
+
-webkit-transform: translateY(100%);
|
|
7718
|
+
transform: translateY(100%); }
|
|
7719
|
+
to {
|
|
7720
|
+
-webkit-transform: translateY(0);
|
|
7721
|
+
transform: translateY(0); } }
|
|
7722
|
+
|
|
7723
|
+
@keyframes slideInFromBottomUploader {
|
|
7710
7724
|
0% {
|
|
7711
7725
|
-webkit-transform: translateY(100%);
|
|
7712
7726
|
transform: translateY(100%); }
|