quasar-ui-sellmate-ui-kit 3.1.3 → 3.1.5
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/index.common.js +2 -2
- package/dist/index.css +1 -1
- package/dist/index.esm.js +2 -2
- package/dist/index.min.css +1 -1
- package/dist/index.rtl.css +1 -1
- package/dist/index.rtl.min.css +1 -1
- package/dist/index.umd.js +6 -6
- package/dist/index.umd.min.js +2 -2
- package/package.json +1 -1
- package/src/assets/icons.js +1 -1
- package/src/components/SCaution.vue +7 -5
package/package.json
CHANGED
package/src/assets/icons.js
CHANGED
|
@@ -15,7 +15,7 @@ export const editIcon = 'M7.33337 3.33337H4.33337C3.78109 3.33337 3.33337 3.7810
|
|
|
15
15
|
export const selectDownArrowIcon = 'M1.5 0.75L6 5.25L10.5 0.75@@fill:none;stroke:currentColor;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round|0 0 12 6';
|
|
16
16
|
|
|
17
17
|
export const arrowUpIcon = 'M28 22L16 10L4 22@@fill:none;stroke:currentColor;stroke-width:2;stroke-linecap:round;stroke-linejoin:round|0 0 32 32';
|
|
18
|
-
export const arrowDownIcon = 'M4 10L16 22L28 10@@fill:none;
|
|
18
|
+
export const arrowDownIcon = 'M4 10L16 22L28 10@@fill:none;stroke:currentColor; stroke-width:2;stroke-linecap:round;stroke-linejoin:round|0 0 32 32';
|
|
19
19
|
export const arrowLeftIcon = 'M10.5 1L1.5 10L10.5 19@@fill:none;stroke:currentColor;stroke-width:1.5;stroke-linecap:round|0 0 12 20';
|
|
20
20
|
export const arrowRightIcon = 'M1 19L10 10L1 1@@fill:none;stroke:currentColor;stroke-width:1.5;stroke-linecap:round|0 0 11 20';
|
|
21
21
|
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
color="Red_Lighten-1"
|
|
21
21
|
:name="cautionOutlineIcon"
|
|
22
22
|
/>
|
|
23
|
-
<strong class="s-caution__icon--title text-white block font-16-700">{{ label }}</strong>
|
|
23
|
+
<strong class="s-caution__icon--title q-mt-xs text-white block font-16-700">{{ label }}</strong>
|
|
24
24
|
</template>
|
|
25
25
|
<template #default>
|
|
26
26
|
<ul>
|
|
@@ -99,16 +99,17 @@ export default defineComponent({
|
|
|
99
99
|
|
|
100
100
|
:deep(.q-banner__content) {
|
|
101
101
|
padding: 0 !important;
|
|
102
|
-
margin: 20px 32px;
|
|
103
|
-
ul {
|
|
102
|
+
margin: 20px 32px 20px 48px;
|
|
103
|
+
> ul {
|
|
104
104
|
padding: 0;
|
|
105
105
|
margin: 0;
|
|
106
106
|
|
|
107
|
-
li {
|
|
107
|
+
> li {
|
|
108
108
|
list-style: none;
|
|
109
109
|
font-size: $default-font;
|
|
110
110
|
// NOTE: 현재(2024-02-16) 디자인팀에서 line-height px 단위로 일괄 조절 진행중. 차후 공통으로 % 적용된 부분 일괄 변경 필요.
|
|
111
111
|
line-height: 22px;
|
|
112
|
+
text-indent: -18px !important;
|
|
112
113
|
&:before {
|
|
113
114
|
content: '-';
|
|
114
115
|
font-size: $default-font;
|
|
@@ -127,9 +128,10 @@ export default defineComponent({
|
|
|
127
128
|
|
|
128
129
|
&--modal {
|
|
129
130
|
:deep(.q-banner__content) {
|
|
130
|
-
margin: 12px 24px;
|
|
131
|
+
margin: 12px 24px 12px 40px;
|
|
131
132
|
ul {
|
|
132
133
|
li {
|
|
134
|
+
text-indent: -14px !important;
|
|
133
135
|
&:before {
|
|
134
136
|
margin-right: 8px;
|
|
135
137
|
}
|