@linzjs/lui 17.38.0 → 17.39.1
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 +14 -0
- package/dist/assets/icons/help_outline.svg +1 -0
- package/dist/assets/icons/unlock.svg +1 -0
- package/dist/assets/svg-content.d.ts +1 -1
- package/dist/assets/svg-content.tsx +22 -1
- package/dist/index.js +11 -3
- package/dist/index.js.map +1 -1
- package/dist/lui.css +16 -9
- package/dist/lui.css.map +1 -1
- package/dist/lui.esm.js +11 -3
- package/dist/lui.esm.js.map +1 -1
- package/dist/scss/Components/Modal/modal.scss +15 -10
- package/package.json +1 -1
|
@@ -52,19 +52,22 @@
|
|
|
52
52
|
display: flex;
|
|
53
53
|
justify-content: space-between;
|
|
54
54
|
align-items: center;
|
|
55
|
-
height:
|
|
55
|
+
height: 60px;
|
|
56
56
|
width: 100%;
|
|
57
|
-
padding: 0 spacing.$unit-
|
|
57
|
+
padding: 0 spacing.$unit-md;
|
|
58
58
|
& h1 {
|
|
59
59
|
display: inline;
|
|
60
|
-
|
|
60
|
+
color: colors.$white;
|
|
61
|
+
font-size: 1.625rem;
|
|
62
|
+
font-weight: 400;
|
|
61
63
|
line-height: 2rem;
|
|
62
64
|
@include fonts.font-light;
|
|
63
65
|
margin: 0;
|
|
64
66
|
|
|
65
67
|
@include breakpoint(md) {
|
|
66
|
-
font-size:
|
|
68
|
+
font-size: 1.625rem;
|
|
67
69
|
line-height: 2.25rem;
|
|
70
|
+
font-weight: 400;
|
|
68
71
|
}
|
|
69
72
|
}
|
|
70
73
|
& button {
|
|
@@ -77,7 +80,6 @@
|
|
|
77
80
|
&-help-btn,
|
|
78
81
|
&-close-btn {
|
|
79
82
|
border-bottom: none !important;
|
|
80
|
-
color: rgba(255, 255, 255, 0.7);
|
|
81
83
|
border: none;
|
|
82
84
|
outline: none;
|
|
83
85
|
padding: 0;
|
|
@@ -85,6 +87,9 @@
|
|
|
85
87
|
background-color: transparent;
|
|
86
88
|
text-align: center;
|
|
87
89
|
float: right;
|
|
90
|
+
path{
|
|
91
|
+
fill: rgb(255 255 255 / 70%);
|
|
92
|
+
}
|
|
88
93
|
}
|
|
89
94
|
&-btn-size {
|
|
90
95
|
font-size: rem(32px);
|
|
@@ -101,13 +106,13 @@
|
|
|
101
106
|
}
|
|
102
107
|
}
|
|
103
108
|
|
|
104
|
-
.lui-modal-header-title h1 {
|
|
105
|
-
color: colors.$white;
|
|
106
|
-
}
|
|
107
|
-
|
|
108
109
|
.lui-modal-header-buttons{
|
|
110
|
+
padding-left: 12px;
|
|
111
|
+
display: flex;
|
|
109
112
|
button{
|
|
110
|
-
padding-
|
|
113
|
+
padding-left: 8px;
|
|
114
|
+
padding-right: 0px;
|
|
111
115
|
float:none;
|
|
116
|
+
display: flex;
|
|
112
117
|
}
|
|
113
118
|
}
|
package/package.json
CHANGED