sebin-reference/src/components/AttackList.vue

26 lines
350 B
Vue

<template>
<div class="attacks">
<slot></slot>
</div>
</template>
<style lang="scss">
@import "@/scss/_mixins.scss";
.attacks {
display: flex;
flex-flow: row wrap;
align-items: center;
width: 100%;
margin: auto;
@include mq-desktop {
max-width: 45rem;
}
@media (min-width: 70em) {
max-width: 70em;
}
}
</style>