We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c615f20 + 8a535b1 commit 7bf186dCopy full SHA for 7bf186d
src/components/hacks-button.vue
@@ -1,9 +1,7 @@
1
<template>
2
- <div class="hacks-button">
3
- <a class="hacks-button__row" :href="link" target="_blank">
4
- <slot />
5
- </a>
6
- </div>
+ <a class="hacks-button" :href="link" target="_blank">
+ <slot />
+ </a>
7
</template>
8
9
<script>
@@ -34,20 +32,16 @@ export default {
34
32
padding: 15px;
35
33
transition: background-color 1s;
36
37
- &__row {
38
- display: flex;
39
- flex-flow: row wrap;
40
- justify-content: space-around;
+ display: flex;
+ flex-flow: row wrap;
+ justify-content: space-around;
41
42
- > * {
43
- margin: 0 5px;
44
- }
+ > * {
+ margin: 0 5px;
45
}
46
47
- a {
48
- text-decoration: none;
49
- color: black;
50
+ text-decoration: none;
+ color: black;
51
52
&:hover,
53
&:focus {
0 commit comments