@pmidc/upyog-css 1.0.21 → 1.0.23
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/dist/index.css +44 -0
- package/dist/index.min.css +1 -1
- package/package.json +1 -1
- package/src/components/card.scss +29 -27
- package/src/pages/employee/dashboard.scss +173 -176
- package/src/pages/swach/index.scss +36 -1
package/dist/index.css
CHANGED
|
@@ -10680,6 +10680,10 @@ body {
|
|
|
10680
10680
|
.swach .mandatory-asterisk {
|
|
10681
10681
|
color: red;
|
|
10682
10682
|
font-weight: 700; }
|
|
10683
|
+
.swach .numberdisplay {
|
|
10684
|
+
display: -webkit-box !important;
|
|
10685
|
+
display: -ms-flexbox !important;
|
|
10686
|
+
display: flex !important; }
|
|
10683
10687
|
.swach .image-card .card, .swach .image-card .card-emp {
|
|
10684
10688
|
width: 540px; }
|
|
10685
10689
|
.swach .break-line {
|
|
@@ -10729,6 +10733,46 @@ body {
|
|
|
10729
10733
|
color: red;
|
|
10730
10734
|
font-weight: 700; }
|
|
10731
10735
|
|
|
10736
|
+
.ViewAttendence .tablechart {
|
|
10737
|
+
display: -webkit-box;
|
|
10738
|
+
display: -ms-flexbox;
|
|
10739
|
+
display: flex;
|
|
10740
|
+
-webkit-box-orient: horizontal;
|
|
10741
|
+
-webkit-box-direction: normal;
|
|
10742
|
+
-ms-flex-direction: row;
|
|
10743
|
+
flex-direction: row;
|
|
10744
|
+
-ms-flex-wrap: wrap;
|
|
10745
|
+
flex-wrap: wrap;
|
|
10746
|
+
grid-gap: 16px;
|
|
10747
|
+
gap: 16px; }
|
|
10748
|
+
|
|
10749
|
+
.ViewAttendence .attendanceimage, .ViewAttendence .tablechartinner {
|
|
10750
|
+
-webkit-box-flex: 1;
|
|
10751
|
+
-ms-flex: 1 1 300px;
|
|
10752
|
+
flex: 1 1 300px;
|
|
10753
|
+
min-width: 300px; }
|
|
10754
|
+
|
|
10755
|
+
.ViewAttendence .attendanceimage {
|
|
10756
|
+
display: -webkit-box;
|
|
10757
|
+
display: -ms-flexbox;
|
|
10758
|
+
display: flex;
|
|
10759
|
+
-webkit-box-align: center;
|
|
10760
|
+
-ms-flex-align: center;
|
|
10761
|
+
align-items: center;
|
|
10762
|
+
-webkit-box-pack: center;
|
|
10763
|
+
-ms-flex-pack: center;
|
|
10764
|
+
justify-content: center;
|
|
10765
|
+
padding: 16px; }
|
|
10766
|
+
|
|
10767
|
+
.ViewAttendence .attendanceimg {
|
|
10768
|
+
max-width: 100%;
|
|
10769
|
+
max-height: 300px;
|
|
10770
|
+
-o-object-fit: contain;
|
|
10771
|
+
object-fit: contain; }
|
|
10772
|
+
|
|
10773
|
+
.ViewAttendence .attendancecard {
|
|
10774
|
+
margin-bottom: 16px; }
|
|
10775
|
+
|
|
10732
10776
|
.display-none {
|
|
10733
10777
|
display: none; }
|
|
10734
10778
|
|