@aaravpos/appointment-barber-booking 2.0.7 → 2.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/sidebar/Sidebar.d.ts +1 -2
- package/dist/index.cjs +29 -29
- package/dist/index.js +3207 -3216
- package/dist/styles.css +6 -9
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -893,6 +893,9 @@
|
|
|
893
893
|
top: 50%;
|
|
894
894
|
margin-top: -12px;
|
|
895
895
|
}
|
|
896
|
+
button.aaravpos-barber-service-action-btn:disabled {
|
|
897
|
+
cursor: not-allowed;
|
|
898
|
+
}
|
|
896
899
|
.aaravpos-barber-overflow-hidden {
|
|
897
900
|
overflow: hidden;
|
|
898
901
|
}
|
|
@@ -1512,7 +1515,7 @@
|
|
|
1512
1515
|
text-align: left;
|
|
1513
1516
|
cursor: pointer;
|
|
1514
1517
|
transition: all 0.3s ease;
|
|
1515
|
-
font-size:
|
|
1518
|
+
font-size: 14px;
|
|
1516
1519
|
border-radius: 4px;
|
|
1517
1520
|
}
|
|
1518
1521
|
.aaravpos-barber-subcategory-btn:hover {
|
|
@@ -1561,7 +1564,7 @@
|
|
|
1561
1564
|
}
|
|
1562
1565
|
.aaravpos-barber-service-card {
|
|
1563
1566
|
position: relative;
|
|
1564
|
-
border:
|
|
1567
|
+
border: 2px solid rgba(0, 0, 0, 0.3);
|
|
1565
1568
|
border-radius: 6px;
|
|
1566
1569
|
padding: 8px;
|
|
1567
1570
|
cursor: pointer;
|
|
@@ -1573,7 +1576,7 @@
|
|
|
1573
1576
|
}
|
|
1574
1577
|
.aaravpos-barber-service-card.active {
|
|
1575
1578
|
border-color: var(--btn-bg);
|
|
1576
|
-
background: rgba(0, 0, 0, 0.
|
|
1579
|
+
background: rgba(0, 0, 0, 0.06);
|
|
1577
1580
|
}
|
|
1578
1581
|
.aaravpos-barber-tax-badge, .aaravpos-barber-consent-badge {
|
|
1579
1582
|
position: absolute;
|
|
@@ -3577,12 +3580,6 @@
|
|
|
3577
3580
|
padding: 20px;
|
|
3578
3581
|
text-align: center;
|
|
3579
3582
|
}
|
|
3580
|
-
.aaravpos-barber-error-text {
|
|
3581
|
-
color: #dc2626;
|
|
3582
|
-
margin-bottom: 16px;
|
|
3583
|
-
font-size: 14px;
|
|
3584
|
-
font-weight: 500;
|
|
3585
|
-
}
|
|
3586
3583
|
.aaravpos-barber-book-btn {
|
|
3587
3584
|
display: flex;
|
|
3588
3585
|
align-items: center;
|
package/package.json
CHANGED