format(front)
This commit is contained in:
parent
c1bb909070
commit
ca42544f02
|
@ -43,16 +43,16 @@ watchEffect(() => {
|
|||
width: v-bind('props.v ? 0 : measure.size');
|
||||
height: v-bind('props.h ? 0 : measure.size');
|
||||
margin: v-bind('measure.margin');
|
||||
flex-grow:v-bind('grow ? 1 : 0');
|
||||
flex-shrink:v-bind('shrink ? 1 : 0');
|
||||
transition:flex-grow .2s, flex-shrink .2s;
|
||||
flex-grow: v-bind('grow ? 1 : 0');
|
||||
flex-shrink: v-bind('shrink ? 1 : 0');
|
||||
transition: flex-grow .2s, flex-shrink .2s;
|
||||
|
||||
position: relative;
|
||||
|
||||
&.has-title::after {
|
||||
position:absolute;
|
||||
inset:calc(50% - 1em);
|
||||
content:v-bind('`"${title}"`')
|
||||
position: absolute;
|
||||
inset: calc(50% - 1em);
|
||||
content: v-bind('`"${title}"`')
|
||||
}
|
||||
|
||||
@if $docs {
|
||||
|
|
Loading…
Reference in New Issue