@avakhula/ui 0.0.333 → 0.0.334
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,5 +1,5 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<div class="panel" :class="{ 'panel-error': error }">
|
|
2
|
+
<div class="ib-panel" :class="{ 'panel-error': error }">
|
|
3
3
|
<div class="panel-head">
|
|
4
4
|
<div class="head-title">
|
|
5
5
|
<slot name="title" />
|
|
@@ -60,9 +60,8 @@ $panel-border-color: $gray-200;
|
|
|
60
60
|
$panel-error-outline-color: $red-800;
|
|
61
61
|
$panel-title-color: $neutral-900;
|
|
62
62
|
$panel-divider-color: $gray-300;
|
|
63
|
-
$description-color: $gray-700;
|
|
64
63
|
|
|
65
|
-
.panel {
|
|
64
|
+
.ib-panel {
|
|
66
65
|
border: 1px solid $panel-border-color;
|
|
67
66
|
border-radius: 4px;
|
|
68
67
|
|
|
@@ -92,11 +91,23 @@ $description-color: $gray-700;
|
|
|
92
91
|
|
|
93
92
|
.head-content {
|
|
94
93
|
width: 100%;
|
|
95
|
-
|
|
96
|
-
@include Ib-H4-regular;
|
|
97
|
-
color: $description-color;
|
|
98
|
-
}
|
|
94
|
+
@include Ib-H4-regular;
|
|
99
95
|
}
|
|
100
96
|
}
|
|
101
97
|
}
|
|
102
98
|
</style>
|
|
99
|
+
|
|
100
|
+
<style lang="scss">
|
|
101
|
+
@import "../../assets/scss/variables/colors.scss";
|
|
102
|
+
@import "../../assets/scss/typography.scss";
|
|
103
|
+
|
|
104
|
+
$description-color: $gray-700;
|
|
105
|
+
|
|
106
|
+
.ib-panel {
|
|
107
|
+
.head-content {
|
|
108
|
+
width: 100%;
|
|
109
|
+
@include Ib-H4-regular;
|
|
110
|
+
color: $description-color;
|
|
111
|
+
}
|
|
112
|
+
}
|
|
113
|
+
</style>
|