@selco/installation-ui-css 1.0.1 → 1.0.3

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": "@selco/installation-ui-css",
3
- "version": "1.0.1",
3
+ "version": "1.0.3",
4
4
  "license": "MIT",
5
5
  "main": "dist/index.css",
6
6
  "author": "Adithya Katuku",
@@ -30,7 +30,7 @@
30
30
  box-shadow: rgba(0, 0, 0, 0.16) 0 -2px 8px;
31
31
  left: 0;
32
32
  max-width: none;
33
- z-index: 999;
33
+ z-index: 10;
34
34
 
35
35
  @apply fixed bottom-0 bg-white py-sm pr-lg text-right;
36
36
 
package/src/index.scss CHANGED
@@ -114,6 +114,7 @@
114
114
  @import "./pages/employee/sandbox.scss";
115
115
  @import "./pages/employee/searchaction.scss";
116
116
  @import "./pages/employee/customcheckbox.scss";
117
+ @import "./pages/employee/reverseactionbar.scss";
117
118
 
118
119
  .wbh-header-container {
119
120
  display: flex !important;
@@ -816,8 +817,19 @@ input[type="number"] {
816
817
  justify-content: space-between;
817
818
  flex-direction: row-reverse;
818
819
  }
819
- .previous-button{
820
- margin-left: 4rem;
820
+ .previous-button {
821
+ width: 100%;
822
+ }
823
+ @media (min-width: 640px) {
824
+ .previous-button{
825
+ width: 240px;
826
+ }
827
+ }
828
+ @media (min-width: 48rem) {
829
+ .previous-button{
830
+ margin-left: 4rem;
831
+ width: 240px;
832
+ }
821
833
  }
822
834
  .view-composer-header-section{
823
835
  display: flex;
@@ -0,0 +1,33 @@
1
+ .reverse-actionbar {
2
+ display: flex;
3
+ flex-direction: column;
4
+ gap: 15px;
5
+ max-width: 100%;
6
+
7
+ .submit-bar,
8
+ .submit-bar-disabled {
9
+ width: 100%;
10
+ display: flex;
11
+ justify-content: center;
12
+ gap: 10px;
13
+ align-items: center;
14
+ }
15
+ }
16
+ @media (min-width: 640px) {
17
+ .reverse-actionbar {
18
+ display: flex;
19
+ flex-direction: row-reverse;
20
+ justify-content: space-between;
21
+ max-width: 100%;
22
+
23
+ .submit-bar,
24
+ .submit-bar-disabled {
25
+ width: 240px;
26
+ display: flex;
27
+ justify-content: center;
28
+ gap: 10px;
29
+ align-items: center;
30
+ }
31
+ }
32
+ }
33
+