diff --git a/resources/js/Global/components/Blocks/Icon.vue b/resources/js/Global/components/Blocks/Icon.vue index 2ffd03a..0f5015a 100644 --- a/resources/js/Global/components/Blocks/Icon.vue +++ b/resources/js/Global/components/Blocks/Icon.vue @@ -44,11 +44,14 @@ export default { line-height: 45px; } .we-icon .label { - font-size: 14px; + font-size: 13px; text-align: right; line-height: 16px; margin-right: 3px; } + .we-icon .value { + font-size: 15px; + } .we-icon.sm .number { font-size: 50px; diff --git a/resources/js/Global/components/Blocks/Number.vue b/resources/js/Global/components/Blocks/Number.vue index b805d67..884fd32 100644 --- a/resources/js/Global/components/Blocks/Number.vue +++ b/resources/js/Global/components/Blocks/Number.vue @@ -60,6 +60,11 @@ font-size: 50px; line-height: 35px; } + /*--------------md------------------------------------*/ + .we-number.sm .number { + font-size: 35px; + line-height: 30px; + } /*----------------------------------------------------*/ /* Colors */ diff --git a/resources/js/Global/components/Blocks/Price.vue b/resources/js/Global/components/Blocks/Price.vue index 62014f4..0cff359 100644 --- a/resources/js/Global/components/Blocks/Price.vue +++ b/resources/js/Global/components/Blocks/Price.vue @@ -4,7 +4,8 @@
{{ Intl.NumberFormat().format(original_price) }}
12 WMi-percentage
-
{{ Intl.NumberFormat().format(price) }}
+
{{ Intl.NumberFormat().format(price) }}
+
رایگان
@@ -28,6 +29,9 @@ text-align: center; padding: 5px 15px; } + .we-price.left-align { + text-align: left; + } .we-price .number { font-size: 25px; line-height: 20px; diff --git a/resources/js/Global/components/Dividers/Section-Title.vue b/resources/js/Global/components/Dividers/Section-Title.vue new file mode 100644 index 0000000..3da24bd --- /dev/null +++ b/resources/js/Global/components/Dividers/Section-Title.vue @@ -0,0 +1,92 @@ + + + + + diff --git a/resources/js/Global/plugins/globalComponent.js b/resources/js/Global/plugins/globalComponent.js index 4e6e1e3..93516bf 100644 --- a/resources/js/Global/plugins/globalComponent.js +++ b/resources/js/Global/plugins/globalComponent.js @@ -13,12 +13,15 @@ import PageTitle from "@Global/components/Dividers/PageTitle.vue"; Vue.component("WM-PageTitle", PageTitle); -import SectionTitle from "@Global/components/Dividers/SectionTitle.vue"; -Vue.component("wm-section-title", SectionTitle); +import SectionTitleFlex from "@Global/components/Dividers/SectionTitle.vue"; +Vue.component("wm-section-title", SectionTitleFlex); import SectionTitleCol from "@Global/components/Dividers/SectionTitle-Col.vue"; Vue.component("section-title-col", SectionTitleCol); +import SectionTitle from "@Global/components/Dividers/Section-Title.vue"; +Vue.component("section-title", SectionTitle); + import SectionTitleVertical from "@Global/components/Dividers/SectionTitle-Vertical.vue"; Vue.component("section-title-vertical", SectionTitleVertical); diff --git a/resources/js/Global/scss/Misc.scss b/resources/js/Global/scss/Misc.scss index 47ec123..35c0286 100644 --- a/resources/js/Global/scss/Misc.scss +++ b/resources/js/Global/scss/Misc.scss @@ -318,6 +318,14 @@ margin-left: 8px; } +.image-square { + width: 32px; + margin-left: 5px; +} +.image-square.height-24 { + width: 24px; +} + /* -------------------------------------------------------- Cropper :: Begin @@ -586,7 +594,7 @@ $value in $colors { .end-row { margin-left: -18px; margin-right: -18px; - padding: 5px 10px; + padding: 2px 10px; } @each $color, $value in $colors { diff --git a/resources/js/Global/scss/Modify.scss b/resources/js/Global/scss/Modify.scss index 0876690..86d8cc0 100644 --- a/resources/js/Global/scss/Modify.scss +++ b/resources/js/Global/scss/Modify.scss @@ -607,3 +607,17 @@ $Value in $Shadows { .v-stepper.we-stepper .v-stepper__step.v-stepper__step--inactive .v-stepper__step__step { color: #00000061; } + + +//------------------------------------------------------ +// Small v-switch +//------------------------------------------------------ +.v-input--switch.small { + margin-top: 0px; +} +.v-input--switch.small .v-input__slot { + margin-bottom: 0px; +} +.v-input--switch.small .v-messages { + min-height: 0px; +}