about summary refs log tree commit diff
path: root/components/FacebookFindUsButton.vue
blob: 9a27c1127256b82c91ce313b91ba71047cbd81a2 (plain)
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
<template>
  <a href="https://facebook.com/19pdhpuszcza" target="_blank" rel="noopener">
    <div class="button">
      <img class="image" src="/assets/social/find_us_fb.png" alt="Find us on Facebook" />
    </div>
  </a>
</template>

<style scoped>
.button {
  border: 2px solid #c4c4c4;
  border-radius: 4px;

  padding: 15px 40px;
  margin: 10px;
}

.button:hover {
  background-color: #efefef;
}

.image {
  width: 200px;
}

@media (max-width: 500px) {
  a {
    width: 100%;
  }

  .image {
    width: 150px;
  }
}
</style>