@pmidc/upyog-css 1.2.36-dev.1.6 → 1.2.36-dev.1.8

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": "@pmidc/upyog-css",
3
- "version": "1.2.36-dev.1.6",
3
+ "version": "1.2.36-dev.1.8",
4
4
  "license": "MIT",
5
5
  "main": "dist/index.css",
6
6
  "engines": {
@@ -102,9 +102,7 @@
102
102
  }
103
103
  }
104
104
  input {
105
- @apply absolute opacity-0;
106
- height: 40px;
107
- width: 175px;
105
+ @apply absolute opacity-0 h-full;
108
106
  top: 20%;
109
107
  left: 3%;
110
108
  }
@@ -114,9 +114,88 @@
114
114
  padding-left: 30px;
115
115
  }
116
116
 
117
+ .back-button-container {
118
+ cursor: pointer;
119
+ width: fit-content;
120
+ display: flex;
121
+ font-family: 'Roboto Condensed', sans-serif;
122
+ color: rgba(13, 67, 167, var(--text-opacity));
123
+ font-size: 16px;
124
+ line-height: 24px;
125
+ }
126
+
127
+ .stepper-margin {
128
+ margin-left: 30px;
129
+ }
130
+
131
+ .document-link-bpa {
132
+ text-decoration: none;
133
+ cursor: pointer;
134
+ transition: transform 0.2s, box-shadow 0.2s;
135
+ width: 250px;
136
+
137
+ &:hover .document-card {
138
+ transform: translateY(-4px);
139
+ box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
140
+ }
141
+ }
142
+
143
+
144
+ .action-bar-wrap-menu {
145
+ box-shadow: rgba(0, 0, 0, 0.16) 0 -2px 8px;
146
+ z-index: 100;
147
+ height: auto;
148
+
149
+ @apply absolute bg-white text-right;
150
+
151
+ top: 100%;
152
+ left: 0;
153
+ width: 100%;
154
+
155
+ div {
156
+ @apply w-full;
157
+ }
158
+
159
+ .menu-wrap-position {
160
+ @apply absolute bg-white text-left mb-xs z-30 cursor-pointer;
161
+
162
+ top: 100%;
163
+ left: 0;
164
+
165
+ box-shadow: rgba(0, 0, 0, 0.14) 0 8px 10px 1px,
166
+ rgba(0, 0, 0, 0.12) 0 3px 14px 2px,
167
+ rgba(0, 0, 0, 0.2) 0 5px 5px -3px;
168
+
169
+ width: auto;
170
+ min-width: 200px;
171
+ max-width: calc(100% - 16px);
172
+ padding: 2px;
173
+
174
+ div {
175
+ @apply h-12 pl-sm py-md text-body-l text-text-primary;
176
+
177
+ &:hover {
178
+ @apply bg-grey-mid w-full;
179
+ }
180
+ }
181
+ }
182
+ }
183
+
184
+ .card-dropdown-wrapper {
185
+ position: relative;
186
+ }
187
+
117
188
  /* Mobile */
118
189
  @media (max-width: 768px) {
119
190
  .upload-tag-container {
120
191
  width: 80%;
121
192
  }
193
+ }
194
+
195
+ .inbox-name {
196
+ font-size: 32px;
197
+ font-family: "Noto Sans", sans-serif;
198
+ color: black;
199
+ display: inline;
200
+ padding-left: 180px;
122
201
  }