@bytebrand/fe-ui-core 4.2.89 → 4.2.90

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bytebrand/fe-ui-core",
3
- "version": "4.2.89",
3
+ "version": "4.2.90",
4
4
  "description": "UI components for the auto.de project",
5
5
  "main": "index.ts",
6
6
  "module": "dist/common.js",
@@ -44,16 +44,18 @@
44
44
  margin-top: 20px
45
45
  display: flex
46
46
  justify-content: center
47
- gap: 36px;
48
- +media-phone-only()
49
- column-gap: 0
47
+ gap: 18px;
48
+
49
+ +media-tablet-landscape-up()
50
+ gap: 36px;
50
51
 
51
52
  .modalBtn
52
53
  height: 38px
53
54
  text-transform: capitalize !important
54
- min-width: 222px !important
55
- +media-phone-only()
56
- font-size: 11px !important
55
+ font-size: 11px !important;
56
+ +media-tablet-landscape-up()
57
+ min-width: 222px !important
58
+ font-size: 14px !important;
57
59
 
58
60
  .outlinedBtn
59
61
  border: none !important;
@@ -45,4 +45,7 @@
45
45
  .outlinedBtnLeft
46
46
  float: right;
47
47
  color: #005CCB;
48
- font-size: 16px;
48
+ font-size: 16px;
49
+
50
+ .clearfix
51
+ clear: both;
@@ -32,6 +32,7 @@ const PreviewCookieModal = ({ toggleModal, setModal }: IPreviewCookieModal) => {
32
32
  <a href={`${environment}/datenschutz/`} target='_blank' style={{ textDecoration: 'underline'}}>hier</a>.
33
33
  <a href={`${environment}/impressum/`} target='_blank' className={styles.outlinedBtnLeft}>Impressum</a>
34
34
  </div>
35
+ <div className={styles.clearfix}></div>
35
36
  <div className={styles.buttonsContainer}>
36
37
  <Button onClick={() => setModal('MANAGE_COOKIE_MODAL')} className={styles.modalBtn} variant='outlined'>Anpassen</Button>
37
38
  <Button onClick={onAcceptAll} className={styles.modalBtn}>zustimmen</Button>