@aaravpos/appointment-barber-booking 1.0.7 → 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/components/common/MainLayout.d.ts +1 -1
- package/dist/index.cjs +33 -33
- package/dist/index.js +2846 -2810
- package/dist/styles.css +34 -4
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -893,6 +893,37 @@
|
|
|
893
893
|
.aaravpos-barber-padding-btn {
|
|
894
894
|
padding: 9px 8px !important;
|
|
895
895
|
}
|
|
896
|
+
.aaravpos-barber-cart-btn {
|
|
897
|
+
display: flex;
|
|
898
|
+
align-items: center;
|
|
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;
|
|
909
|
+
}
|
|
910
|
+
.aaravpos-barber-count {
|
|
911
|
+
position: absolute;
|
|
912
|
+
top: -5px;
|
|
913
|
+
left: -14px;
|
|
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);
|
|
919
|
+
border-radius: 50%;
|
|
920
|
+
height: 22px;
|
|
921
|
+
width: 22px;
|
|
922
|
+
display: flex;
|
|
923
|
+
align-items: center;
|
|
924
|
+
justify-content: center;
|
|
925
|
+
font-size: 10px;
|
|
926
|
+
}
|
|
896
927
|
.aaravpos-barber-layout {
|
|
897
928
|
height: 700px;
|
|
898
929
|
display: flex;
|
|
@@ -952,7 +983,6 @@
|
|
|
952
983
|
background: var(--surface-bg, #ffffff);
|
|
953
984
|
border: 1px solid rgba(0, 0, 0, 0.1);
|
|
954
985
|
padding: 16px 16px 14px;
|
|
955
|
-
overflow: hidden;
|
|
956
986
|
position: fixed;
|
|
957
987
|
top: 10px;
|
|
958
988
|
right: 10px;
|
|
@@ -971,7 +1001,7 @@
|
|
|
971
1001
|
.aaravpos-barber-sidebar-mobile {
|
|
972
1002
|
position: fixed;
|
|
973
1003
|
inset: 0;
|
|
974
|
-
z-index:
|
|
1004
|
+
z-index: 999;
|
|
975
1005
|
background: #fff;
|
|
976
1006
|
display: flex;
|
|
977
1007
|
flex-direction: column;
|
|
@@ -1207,7 +1237,7 @@
|
|
|
1207
1237
|
}
|
|
1208
1238
|
.aaravpos-barber-step-nav {
|
|
1209
1239
|
display: grid;
|
|
1210
|
-
grid-template-columns: repeat(
|
|
1240
|
+
grid-template-columns: repeat(4, 1fr);
|
|
1211
1241
|
width: 100%;
|
|
1212
1242
|
overflow: hidden;
|
|
1213
1243
|
}
|
|
@@ -1846,7 +1876,7 @@
|
|
|
1846
1876
|
transition: all 0.2s ease;
|
|
1847
1877
|
border-radius: 6px;
|
|
1848
1878
|
}
|
|
1849
|
-
.aaravpos-barber-common-btn:hover {
|
|
1879
|
+
.aaravpos-barber-common-btn:hover, .aaravpos-barber-cart-btn:hover {
|
|
1850
1880
|
background: var(--btn-bg-hover);
|
|
1851
1881
|
color: var(--btn-text-hover, #ffffff);
|
|
1852
1882
|
}
|
package/package.json
CHANGED