@aaravpos/appointment-barber-booking 3.0.0 → 3.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/dist/index.cjs +25 -25
- package/dist/index.js +803 -800
- package/dist/styles.css +10 -1
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -893,6 +893,15 @@
|
|
|
893
893
|
top: 50%;
|
|
894
894
|
margin-top: -12px;
|
|
895
895
|
}
|
|
896
|
+
.aaravpos-delete-btn {
|
|
897
|
+
background: transparent;
|
|
898
|
+
border: 0px;
|
|
899
|
+
outline: none;
|
|
900
|
+
position: absolute;
|
|
901
|
+
right: 10px;
|
|
902
|
+
cursor: pointer;
|
|
903
|
+
color: red;
|
|
904
|
+
}
|
|
896
905
|
button.aaravpos-barber-service-action-btn:disabled {
|
|
897
906
|
cursor: not-allowed;
|
|
898
907
|
}
|
|
@@ -1530,7 +1539,7 @@ button.aaravpos-barber-service-action-btn:disabled {
|
|
|
1530
1539
|
background: rgb(197 197 197 / 36%);
|
|
1531
1540
|
}
|
|
1532
1541
|
.aaravpos-barber-subcategory-btn.active .aaravpos-barber-subcategory-count {
|
|
1533
|
-
color: #
|
|
1542
|
+
color: #000000;
|
|
1534
1543
|
}
|
|
1535
1544
|
.aaravpos-barber-supercategory-title {
|
|
1536
1545
|
margin-top: 0px;
|
package/package.json
CHANGED