@simplybusiness/theme-simplybusiness 1.19.8 → 1.19.10
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/CHANGELOG.md +20 -0
- package/dist/index.css +148 -1
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,25 @@
|
|
|
1
1
|
# @simplybusiness/theme-simplybusiness
|
|
2
2
|
|
|
3
|
+
## 1.19.10
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [8e3d64a]
|
|
8
|
+
- @simplybusiness/mobius-chatbot@1.3.0
|
|
9
|
+
|
|
10
|
+
## 1.19.9
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- Updated dependencies [2de69f8]
|
|
15
|
+
- Updated dependencies [cf29324]
|
|
16
|
+
- @simplybusiness/mobius-interventions@1.44.0
|
|
17
|
+
- @simplybusiness/mobius-journey@8.20.1
|
|
18
|
+
- @simplybusiness/mobius@5.27.1
|
|
19
|
+
- @simplybusiness/mobius-chatbot@1.2.4
|
|
20
|
+
- @simplybusiness/mobius-datepicker@6.5.16
|
|
21
|
+
- @simplybusiness/theme-core@7.6.11
|
|
22
|
+
|
|
3
23
|
## 1.19.8
|
|
4
24
|
|
|
5
25
|
### Patch Changes
|
package/dist/index.css
CHANGED
|
@@ -3483,6 +3483,7 @@ svg:not(:host).svg-inline--mobius-icon{
|
|
|
3483
3483
|
.mobius-cover-option__limit-button{
|
|
3484
3484
|
padding:0;
|
|
3485
3485
|
margin-bottom:10px;
|
|
3486
|
+
text-underline-offset:var(--size-xxs)
|
|
3486
3487
|
}
|
|
3487
3488
|
.mobius-cover-option__limit-button .mobius-icon{
|
|
3488
3489
|
margin-left:var(--size-xs);
|
|
@@ -6611,6 +6612,153 @@ svg:not(:host).svg-inline--mobius-icon{
|
|
|
6611
6612
|
margin:0;
|
|
6612
6613
|
}
|
|
6613
6614
|
}
|
|
6615
|
+
.discount-voucher__footer{
|
|
6616
|
+
box-sizing:border-box;
|
|
6617
|
+
position:fixed;
|
|
6618
|
+
bottom:0;
|
|
6619
|
+
width:100%;
|
|
6620
|
+
background-color:var(--color-background-highlight);
|
|
6621
|
+
box-shadow:0 -2px 5px rgba(0, 0, 0, 0.1);
|
|
6622
|
+
padding:var(--size-sm);
|
|
6623
|
+
display:grid;
|
|
6624
|
+
grid-template-columns:1fr auto;
|
|
6625
|
+
align-items:center;
|
|
6626
|
+
z-index:1000;
|
|
6627
|
+
transition:opacity 0.5s ease, transform 0.5s ease;
|
|
6628
|
+
left:0;
|
|
6629
|
+
}
|
|
6630
|
+
.discount-voucher__footer--hidden{
|
|
6631
|
+
opacity:0;
|
|
6632
|
+
transform:translateY(100%);
|
|
6633
|
+
pointer-events:none;
|
|
6634
|
+
}
|
|
6635
|
+
.discount-voucher__content{
|
|
6636
|
+
display:grid;
|
|
6637
|
+
grid-template-columns:1fr auto;
|
|
6638
|
+
align-items:center;
|
|
6639
|
+
width:100%;
|
|
6640
|
+
max-width:1000px;
|
|
6641
|
+
margin:0 auto;
|
|
6642
|
+
gap:16px;
|
|
6643
|
+
}
|
|
6644
|
+
.discount-voucher__text{
|
|
6645
|
+
display:grid;
|
|
6646
|
+
grid-template-columns:auto 1fr;
|
|
6647
|
+
align-items:center;
|
|
6648
|
+
gap:16px;
|
|
6649
|
+
}
|
|
6650
|
+
.discount-voucher__text-icon{
|
|
6651
|
+
color:var(--color-accent);
|
|
6652
|
+
}
|
|
6653
|
+
.discount-voucher__headline{
|
|
6654
|
+
font-weight:bold;
|
|
6655
|
+
display:inline;
|
|
6656
|
+
margin-right:5px;
|
|
6657
|
+
}
|
|
6658
|
+
.discount-voucher__description{
|
|
6659
|
+
display:inline;
|
|
6660
|
+
}
|
|
6661
|
+
.discount-voucher__images{
|
|
6662
|
+
display:grid;
|
|
6663
|
+
gap:16px;
|
|
6664
|
+
}
|
|
6665
|
+
.discount-voucher__image{
|
|
6666
|
+
max-height:50px;
|
|
6667
|
+
width:auto;
|
|
6668
|
+
}
|
|
6669
|
+
.discount-voucher__button--close{
|
|
6670
|
+
background:none;
|
|
6671
|
+
border:none;
|
|
6672
|
+
cursor:pointer;
|
|
6673
|
+
color:var(--color-secondary);
|
|
6674
|
+
display:grid;
|
|
6675
|
+
grid-template-columns:auto 1fr;
|
|
6676
|
+
align-items:center;
|
|
6677
|
+
gap:5px;
|
|
6678
|
+
}
|
|
6679
|
+
.discount-voucher__button-text{
|
|
6680
|
+
-webkit-text-decoration:underline;
|
|
6681
|
+
text-decoration:underline;
|
|
6682
|
+
}
|
|
6683
|
+
.discount-voucher__text div{
|
|
6684
|
+
gap:8px;
|
|
6685
|
+
}
|
|
6686
|
+
.mobius-discount-voucher-button.discount-voucher__button--desktop{
|
|
6687
|
+
min-width:238px;
|
|
6688
|
+
text-align:center;
|
|
6689
|
+
}
|
|
6690
|
+
.mobius-discount-voucher-button.discount-voucher__button--mobile{
|
|
6691
|
+
display:none;
|
|
6692
|
+
}
|
|
6693
|
+
.discount-voucher__content-desktop-container{
|
|
6694
|
+
display:grid;
|
|
6695
|
+
grid-template-columns:2fr 1fr auto;
|
|
6696
|
+
align-items:center;
|
|
6697
|
+
width:100%;
|
|
6698
|
+
max-width:1000px;
|
|
6699
|
+
margin:0 auto;
|
|
6700
|
+
}
|
|
6701
|
+
.discount-voucher__terms-and-conditions{
|
|
6702
|
+
margin:0;
|
|
6703
|
+
font-size:var(--font-size-1);
|
|
6704
|
+
}
|
|
6705
|
+
@media (max-width: 768px){
|
|
6706
|
+
|
|
6707
|
+
.discount-voucher__content-desktop-container{
|
|
6708
|
+
grid-template-columns:1fr auto;
|
|
6709
|
+
}
|
|
6710
|
+
|
|
6711
|
+
.discount-voucher__footer{
|
|
6712
|
+
padding:var(--size-sm);
|
|
6713
|
+
grid-template-columns:1fr auto;
|
|
6714
|
+
}
|
|
6715
|
+
|
|
6716
|
+
.discount-voucher__headline{
|
|
6717
|
+
font-weight:bold;
|
|
6718
|
+
display:inline-block;
|
|
6719
|
+
margin:0 5px 0 0;
|
|
6720
|
+
clear:both;
|
|
6721
|
+
width:100%;
|
|
6722
|
+
}
|
|
6723
|
+
|
|
6724
|
+
.mobius-discount-voucher-button.discount-voucher__button--mobile{
|
|
6725
|
+
display:block;
|
|
6726
|
+
}
|
|
6727
|
+
|
|
6728
|
+
.mobius-discount-voucher-button.discount-voucher__button--desktop{
|
|
6729
|
+
display:none;
|
|
6730
|
+
}
|
|
6731
|
+
|
|
6732
|
+
.discount-voucher__content{
|
|
6733
|
+
grid-template-columns:auto;
|
|
6734
|
+
}
|
|
6735
|
+
|
|
6736
|
+
.mobius-discount-voucher-button.discount-voucher__button{
|
|
6737
|
+
width:100%;
|
|
6738
|
+
}
|
|
6739
|
+
}
|
|
6740
|
+
@media (max-width: 320px){
|
|
6741
|
+
.mobius-discount-voucher-button.discount-voucher__button--mobile{
|
|
6742
|
+
display:block;
|
|
6743
|
+
}
|
|
6744
|
+
|
|
6745
|
+
.mobius-discount-voucher-button.discount-voucher__button--desktop{
|
|
6746
|
+
display:none;
|
|
6747
|
+
}
|
|
6748
|
+
|
|
6749
|
+
.discount-voucher__footer{
|
|
6750
|
+
padding:var(--size-xs);
|
|
6751
|
+
grid-template-columns:1fr auto;
|
|
6752
|
+
}
|
|
6753
|
+
|
|
6754
|
+
.discount-voucher__content{
|
|
6755
|
+
grid-template-columns:auto;
|
|
6756
|
+
}
|
|
6757
|
+
|
|
6758
|
+
.mobius-discount-voucher-button.discount-voucher__button{
|
|
6759
|
+
width:100%;
|
|
6760
|
+
}
|
|
6761
|
+
}
|
|
6614
6762
|
.mobius-chatbot{
|
|
6615
6763
|
height:100%;
|
|
6616
6764
|
display:flex;
|
|
@@ -6713,7 +6861,6 @@ svg:not(:host).svg-inline--mobius-icon{
|
|
|
6713
6861
|
.mobius-text-message__content{
|
|
6714
6862
|
display:flex;
|
|
6715
6863
|
flex-direction:column;
|
|
6716
|
-
gap:var(--size-sm);
|
|
6717
6864
|
width:100%;
|
|
6718
6865
|
}
|
|
6719
6866
|
.mobius-text-message__text{
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@simplybusiness/theme-simplybusiness",
|
|
3
|
-
"version": "1.19.
|
|
3
|
+
"version": "1.19.10",
|
|
4
4
|
"main": "dist/index.css",
|
|
5
5
|
"simplyBusiness": {
|
|
6
6
|
"publishToPublicNpm": true
|
|
@@ -26,12 +26,12 @@
|
|
|
26
26
|
"./fonts": "./dist/fonts.css"
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"@simplybusiness/mobius": "^5.27.
|
|
30
|
-
"@simplybusiness/mobius-chatbot": "^1.
|
|
31
|
-
"@simplybusiness/mobius-datepicker": "^6.5.
|
|
32
|
-
"@simplybusiness/mobius-interventions": "^1.
|
|
33
|
-
"@simplybusiness/mobius-journey": "^8.20.
|
|
34
|
-
"@simplybusiness/theme-core": "^7.6.
|
|
29
|
+
"@simplybusiness/mobius": "^5.27.1",
|
|
30
|
+
"@simplybusiness/mobius-chatbot": "^1.3.0",
|
|
31
|
+
"@simplybusiness/mobius-datepicker": "^6.5.16",
|
|
32
|
+
"@simplybusiness/mobius-interventions": "^1.44.0",
|
|
33
|
+
"@simplybusiness/mobius-journey": "^8.20.1",
|
|
34
|
+
"@simplybusiness/theme-core": "^7.6.11"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
37
|
"css-loader": "^7.1.2",
|