@tekkare/auriga 0.1.113 → 0.1.114
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/module.json
CHANGED
|
@@ -3,7 +3,16 @@
|
|
|
3
3
|
<div class="arg_section header" v-if="position === 'top'">
|
|
4
4
|
<slot name="Header" />
|
|
5
5
|
</div>
|
|
6
|
-
<div
|
|
6
|
+
<div
|
|
7
|
+
class="content"
|
|
8
|
+
:class="
|
|
9
|
+
position === 'top'
|
|
10
|
+
? 'footer'
|
|
11
|
+
: position === 'bottom'
|
|
12
|
+
? 'header'
|
|
13
|
+
: 'none'
|
|
14
|
+
"
|
|
15
|
+
>
|
|
7
16
|
<slot />
|
|
8
17
|
</div>
|
|
9
18
|
<div class="arg_section footer" v-if="position === 'bottom'">
|
|
@@ -26,5 +35,5 @@ export default defineComponent({
|
|
|
26
35
|
</script>
|
|
27
36
|
|
|
28
37
|
<style scoped>
|
|
29
|
-
.arg_section{align-self:stretch;background:rgba(253,253,255,.8);color:var(--dark);font-size:12px;font-style:normal;font-weight:400;line-height:normal;padding:8px 16px}.arg_section_card{align-items:flex-start;border:1px solid var(--Main-Light,#dbdef0);border-radius:12px;box-shadow:0 6px 8px 0 rgba(30,41,59,.1);display:flex;flex-direction:column}.content{align-self:stretch;background:var(--white);padding:24px}.arg_section.header{border-bottom:1px solid var(--Main-Light,#dbdef0)}.header{border-top-left-radius:12px;border-top-right-radius:12px}.arg_section.footer{border-top:1px solid var(--Main-Light,#dbdef0)}.footer{border-bottom-left-radius:12px;border-bottom-right-radius:12px}
|
|
38
|
+
.arg_section{align-self:stretch;background:rgba(253,253,255,.8);color:var(--dark);font-size:12px;font-style:normal;font-weight:400;line-height:normal;padding:8px 16px}.arg_section_card{align-items:flex-start;border:1px solid var(--Main-Light,#dbdef0);border-radius:12px;box-shadow:0 6px 8px 0 rgba(30,41,59,.1);display:flex;flex-direction:column}.content{align-self:stretch;background:var(--white);padding:24px}.arg_section.header{border-bottom:1px solid var(--Main-Light,#dbdef0)}.header{border-top-left-radius:12px;border-top-right-radius:12px}.arg_section.footer{border-top:1px solid var(--Main-Light,#dbdef0)}.footer{border-bottom-left-radius:12px;border-bottom-right-radius:12px}.none{border-radius:12px!important}
|
|
30
39
|
</style>
|