All files / src/components/u-block.vue index.vue

68.42% Statements 13/19
33.33% Branches 2/6
33.33% Functions 1/3
72.22% Lines 13/18

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55      7x     7x             7x           7x 7x             7x 7x 7x 7x 7x 7x 7x           7x                              
<template>
<div :class="$style.root">
    <slot></slot>
</div>
</template>
 
<script>
export default { name: 'u-block' };
</script>
 
<style module>
.root {
    padding: 5px;
    background: var(--block-background);
    color: var(--color-light);
    text-align: center;
    overflow: hidden;
}
 
.root[size$="auto"] { width: auto; }
.root[size^="auto"] { height: auto; }

.root[size$="mini"] { width: 16px; }
.root[size^="mini"] { height: 16px; }
 
.root[size$="small"] { width: 32px; }
.root[size^="small"] { height: 32px; }
 
.root[size$="normal"] { width: 64px; }
.root[size^="normal"] { height: 64px; }
 
.root[size$="large"] { width: 128px; }
.root[size^="large"] { height: 128px; }

.root[color="primary"] {
    background: var(--brand-primary);
}
 
/* .root[color="success"] {
    background: var(--brand-success);
}
 
.root[color="warning"] {
    background: var(--brand-warning);
} */
 
.root[color="error"] {
    background: var(--brand-error);
}
 
.root[inline] {
    display: inline-block;
}
</style>