@aaravpos/appointment-barber-booking 1.0.8 → 1.0.9
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.cjs +27 -27
- package/dist/index.js +1398 -1394
- package/dist/styles.css +16 -15
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -894,34 +894,35 @@
|
|
|
894
894
|
padding: 9px 8px !important;
|
|
895
895
|
}
|
|
896
896
|
.aaravpos-barber-cart-btn {
|
|
897
|
-
position: absolute;
|
|
898
|
-
left: -36px;
|
|
899
|
-
padding: 9px;
|
|
900
|
-
top: 0px;
|
|
901
|
-
background: var(--btn-bg);
|
|
902
|
-
color: var(--btn-text, #ffffff);
|
|
903
|
-
border: 0px;
|
|
904
|
-
outline: none;
|
|
905
|
-
border-top-left-radius: 8px;
|
|
906
|
-
border-bottom-left-radius: 8px;
|
|
907
|
-
cursor: pointer;
|
|
908
897
|
display: flex;
|
|
909
898
|
align-items: center;
|
|
910
899
|
justify-content: center;
|
|
900
|
+
height: 40px;
|
|
901
|
+
width: 40px;
|
|
902
|
+
border: 1px solid #e5e7eb;
|
|
903
|
+
background: #ffffff;
|
|
904
|
+
cursor: pointer;
|
|
905
|
+
outline: none;
|
|
906
|
+
flex-shrink: 0;
|
|
907
|
+
border-radius: 100%;
|
|
908
|
+
position: relative;
|
|
911
909
|
}
|
|
912
910
|
.aaravpos-barber-count {
|
|
913
911
|
position: absolute;
|
|
914
912
|
top: -5px;
|
|
915
913
|
left: -14px;
|
|
916
|
-
background: var(--btn-bg
|
|
917
|
-
color:
|
|
914
|
+
background: var(--btn-bg);
|
|
915
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
916
|
+
background: color-mix(in srgb, var(--btn-bg) 80%, transparent);
|
|
917
|
+
}
|
|
918
|
+
color: var(--btn-text);
|
|
918
919
|
border-radius: 50%;
|
|
919
920
|
height: 22px;
|
|
920
921
|
width: 22px;
|
|
921
922
|
display: flex;
|
|
922
923
|
align-items: center;
|
|
923
924
|
justify-content: center;
|
|
924
|
-
font-size:
|
|
925
|
+
font-size: 10px;
|
|
925
926
|
}
|
|
926
927
|
.aaravpos-barber-layout {
|
|
927
928
|
height: 700px;
|
|
@@ -1236,7 +1237,7 @@
|
|
|
1236
1237
|
}
|
|
1237
1238
|
.aaravpos-barber-step-nav {
|
|
1238
1239
|
display: grid;
|
|
1239
|
-
grid-template-columns: repeat(
|
|
1240
|
+
grid-template-columns: repeat(4, 1fr);
|
|
1240
1241
|
width: 100%;
|
|
1241
1242
|
overflow: hidden;
|
|
1242
1243
|
}
|
package/package.json
CHANGED