@djb25/digit-ui-css 1.0.82 → 1.0.83

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@djb25/digit-ui-css",
3
- "version": "1.0.82",
3
+ "version": "1.0.83",
4
4
  "license": "MIT",
5
5
  "main": "dist/index.css",
6
6
  "author": "satyam",
@@ -1809,6 +1809,27 @@
1809
1809
  flex-direction: column !important;
1810
1810
  gap: 0 !important;
1811
1811
  width: 100% !important;
1812
+ padding-top: 48px !important;
1813
+ }
1814
+
1815
+ .mobile-sidebar-toggle {
1816
+ position: fixed !important;
1817
+ top: 60px !important;
1818
+ left: 0 !important;
1819
+ right: 0 !important;
1820
+ height: 48px !important;
1821
+ z-index: 9999 !important;
1822
+ margin: 0 !important;
1823
+ border-radius: 0 !important;
1824
+ border-top: none !important;
1825
+ border-left: none !important;
1826
+ border-right: none !important;
1827
+ border-bottom: 2px solid #e5e7eb !important;
1828
+ background-color: #ffffff !important;
1829
+ display: flex !important;
1830
+ align-items: center !important;
1831
+ padding: 0 16px !important;
1832
+ box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
1812
1833
  }
1813
1834
 
1814
1835
  /* expanded sidebar NOT hidden on mobile to allow hamburger menu */
package/src/index.scss CHANGED
@@ -187,7 +187,7 @@ h6 {
187
187
  }
188
188
 
189
189
  .check-page-link-button {
190
- color: theme(colors.primary.main) !important;
190
+ color: #a82227 !important;
191
191
  }
192
192
 
193
193
  .pt-application-download-btn {
@@ -6,6 +6,7 @@
6
6
  .emtb-root {
7
7
  display: flex;
8
8
  position: fixed;
9
+ top: 60px;
9
10
  left: 0;
10
11
  right: 0;
11
12
  z-index: 9999;
@@ -838,6 +838,40 @@
838
838
  font-weight: 700;
839
839
  color: #7dd3b2;
840
840
  }
841
+
842
+ .download-excel-btn {
843
+ display: flex;
844
+ align-items: center;
845
+ justify-content: center;
846
+ gap: 8px;
847
+ padding: 8px 16px;
848
+ background-color: #10B981;
849
+ color: #ffffff;
850
+ border: none;
851
+ border-radius: 8px;
852
+ font-weight: 700;
853
+ font-size: 13px;
854
+ cursor: pointer;
855
+ transition: all 0.2s ease;
856
+ width: 100%;
857
+ margin-top: 14px;
858
+ box-shadow: 0 2px 4px rgba(16, 185, 129, 0.2);
859
+
860
+ &:hover {
861
+ background-color: #059669;
862
+ box-shadow: 0 4px 8px rgba(5, 150, 105, 0.3);
863
+ }
864
+
865
+ &:disabled {
866
+ background-color: #A7F3D0;
867
+ cursor: not-allowed;
868
+ box-shadow: none;
869
+ }
870
+
871
+ svg {
872
+ font-size: 14px;
873
+ }
874
+ }
841
875
  }
842
876
  }
843
877
 
@@ -1011,6 +1045,62 @@
1011
1045
  }
1012
1046
  }
1013
1047
  }
1048
+
1049
+ @media (max-width: 768px) {
1050
+ padding: 16px;
1051
+ border-radius: 12px;
1052
+
1053
+ .status-cards-header {
1054
+ flex-direction: column;
1055
+ align-items: stretch;
1056
+ gap: 16px;
1057
+
1058
+ .status-cards-subtitle {
1059
+ max-width: 100%;
1060
+ }
1061
+
1062
+ .total-applications-card {
1063
+ margin-top: 0;
1064
+ width: 100%;
1065
+ min-width: unset;
1066
+ }
1067
+ }
1068
+
1069
+ .status-panels-grid {
1070
+ grid-template-columns: 1fr;
1071
+ gap: 16px;
1072
+ justify-items: center;
1073
+
1074
+ .status-panel {
1075
+ max-width: 360px;
1076
+ width: 100%;
1077
+ }
1078
+ }
1079
+ }
1080
+
1081
+ @media (max-width: 480px) {
1082
+ .status-cards-header {
1083
+ .status-cards-h1 {
1084
+ font-size: 20px;
1085
+ }
1086
+ }
1087
+
1088
+ .status-panels-grid {
1089
+ .status-panel {
1090
+ padding: 16px;
1091
+
1092
+ .breakdown-body {
1093
+ flex-direction: column-reverse;
1094
+ align-items: center;
1095
+ gap: 16px;
1096
+
1097
+ .status-legend {
1098
+ width: 100%;
1099
+ }
1100
+ }
1101
+ }
1102
+ }
1103
+ }
1014
1104
  }
1015
1105
  }
1016
1106