@simplybusiness/theme-simplybusiness 1.9.15 → 1.9.16

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 CHANGED
@@ -1,5 +1,16 @@
1
1
  # @simplybusiness/theme-simplybusiness
2
2
 
3
+ ## 1.9.16
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [57dc622]
8
+ - Updated dependencies [fe1f994]
9
+ - Updated dependencies [64b4fb5]
10
+ - Updated dependencies [6d4c55f]
11
+ - @simplybusiness/mobius-journey@6.52.0
12
+ - @simplybusiness/mobius-datepicker@6.4.0
13
+
3
14
  ## 1.9.15
4
15
 
5
16
  ### Patch Changes
package/dist/index.css CHANGED
@@ -3830,6 +3830,65 @@ svg:not(:host).svg-inline--mobius-icon{
3830
3830
  width:100%;
3831
3831
  height:auto;
3832
3832
  }
3833
+ .partial-quotes-referral__container{
3834
+ display:grid;
3835
+ grid-template-columns:1fr;
3836
+ align-items:center;
3837
+ justify-content:start;
3838
+ text-align:left;
3839
+ background:var(--color-background-highlight);
3840
+ border-radius:var(--radius-2);
3841
+ padding:var(--size-md);
3842
+ margin-bottom:var(--size-lg);
3843
+ }
3844
+ .partial-quotes-referral__main{
3845
+ display:grid;
3846
+ grid-template-columns:1fr;
3847
+ gap:var(--size-sm);
3848
+ }
3849
+ .partial-quotes-referral__main p{
3850
+ margin:0;
3851
+ }
3852
+ .partial-quotes-referral__title{
3853
+ font-weight:normal;
3854
+ margin-top:0;
3855
+ }
3856
+ .partial-quotes-referral__insurer-panel{
3857
+ display:grid;
3858
+ grid-template-columns:repeat(auto-fit, minmax(96px, 1fr));
3859
+ gap:var(--size-xs);
3860
+ opacity:0.8;
3861
+ }
3862
+ .partial-quotes-referral__insurer-panel *{
3863
+ justify-self:center;
3864
+ }
3865
+ .partial-quotes-referral-logo{
3866
+ width:64px;
3867
+ height:30px;
3868
+ object-fit:contain;
3869
+ object-position:center;
3870
+ gap:var(--size-xs);
3871
+ }
3872
+ @media (min-width: 850px){
3873
+ .partial-quotes-referral__main{
3874
+ gap:var(--size-lg);
3875
+ }
3876
+
3877
+ .partial-quotes-referral__container-variant-b .partial-quotes-referral__main{
3878
+ grid-template-columns:repeat(2, 1fr);
3879
+ grid-template-rows:1fr;
3880
+ }
3881
+
3882
+ .partial-quotes-referral__insurer-panel{
3883
+ grid-template-columns:repeat(auto-fit, minmax(128px, 1fr));
3884
+ gap:var(--size-md);
3885
+ }
3886
+
3887
+ .partial-quotes-referral-logo{
3888
+ width:128px;
3889
+ height:60px;
3890
+ }
3891
+ }
3833
3892
  .mobius-no-quotes-card{
3834
3893
  margin:0;
3835
3894
  border:1px solid var(--color-border);
@@ -5138,6 +5197,9 @@ svg:not(:host).svg-inline--mobius-icon{
5138
5197
  .mobius-date-picker__container:not(.--is-touch-device) .mobius-text-field__input::-webkit-calendar-picker-indicator{
5139
5198
  display:none;
5140
5199
  }
5200
+ .mobius-date-picker__container.--is-touch-device .mobius-text-field__input{
5201
+ min-height:52;
5202
+ }
5141
5203
  .mobius-date-picker.mobius-text-field__input{
5142
5204
  line-height:1;
5143
5205
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@simplybusiness/theme-simplybusiness",
3
- "version": "1.9.15",
3
+ "version": "1.9.16",
4
4
  "main": "dist/index.css",
5
5
  "simplyBusiness": {
6
6
  "publishToPublicNpm": true
@@ -27,8 +27,8 @@
27
27
  },
28
28
  "dependencies": {
29
29
  "@simplybusiness/mobius": "^5.18.0",
30
- "@simplybusiness/mobius-datepicker": "^6.3.6",
31
- "@simplybusiness/mobius-journey": "^6.51.0",
30
+ "@simplybusiness/mobius-datepicker": "^6.4.0",
31
+ "@simplybusiness/mobius-journey": "^6.52.0",
32
32
  "@simplybusiness/theme-core": "^7.3.1"
33
33
  },
34
34
  "devDependencies": {
package/src/index.css CHANGED
@@ -36,6 +36,7 @@
36
36
  @import "@simplybusiness/mobius-journey/src/components/Questionnaire/Section/Section.css";
37
37
  @import "@simplybusiness/mobius-journey/src/components/Questionnaire/Section/Submission.css";
38
38
  @import "@simplybusiness/mobius-journey/src/components/Questionnaire/SecurityLocks/SecurityLocks.css";
39
+ @import "@simplybusiness/mobius-journey/src/components/QuoteCards/PartialQuotesReferral/PartialQuotesReferral.css";
39
40
  @import "@simplybusiness/mobius-journey/src/components/QuoteCards/NoQuotesCard/NoQuotesCard.css";
40
41
  @import "@simplybusiness/mobius-journey/src/components/QuoteCards/NoQuotesReferral/NoQuotesReferral.css";
41
42
  @import "@simplybusiness/mobius-journey/src/components/QuoteCards/QuoteCard/Cover/Cover.css";