FormLine.vue 469 Bytes
<template>
  <div class="FormLine">
    <slot></slot>
  </div>
</template>

<script>
export default {
  name: 'form-line',
};
</script>


<style lang="scss">
@import '../../assets/styles/variables.scss';

.FormLine {
  height: 25px;
  line-height: 25px;
  display: flex;
  & + & {
    margin-top: 9px;
  }
}
@media screen and (min-width: $bigScreenWidth) {
  .FormLine {
    height: 40px;
    line-height: 40px;
    & + & {
      margin-top: 16px;
    }
  }
}
</style>