如何在Vuetify中将<a>标签对齐到与<v-btn>​​相同的高度?

时间:2019-10-25 12:33:26

标签: vue.js vuetify.js

创建帐户链接和继续按钮的高度不同。我该如何解决?

enter image description here

这是我的代码:

cpanm --from https://cpan.metacpan.org/ Plack    # use only the HTTPS mirror

1 个答案:

答案 0 :(得分:0)

我通过使列和标签为flex并将标签与中心对齐来解决了这个问题:

    <v-col class="d-flex" shrink>
      <a class="d-flex align-center" style="white-space: nowrap" @click="redirectForgot()"
        >Forgot password?</a>
    </v-col>
相关问题