This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2020-10-28 08:22:29 -07:00
|
|
|
<template>
|
2020-12-11 11:37:04 -08:00
|
|
|
<div>
|
2021-12-30 01:53:30 -08:00
|
|
|
<div class="list-group mt-md-5 py-md-5">
|
2020-10-28 08:22:29 -07:00
|
|
|
<a v-for="(options, locale) in locales" :key="locale" :href="options.url" class="list-group-item list-group-item-action list-group-item-hoverable">
|
|
|
|
<div class="h3">
|
|
|
|
{{ options.name }}
|
|
|
|
</div>
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
2020-11-23 14:14:31 -08:00
|
|
|
@import "assets/variables";
|
2020-10-28 08:22:29 -07:00
|
|
|
|
|
|
|
.list-group-item-hoverable {
|
|
|
|
&:hover {
|
|
|
|
color: $primary;
|
2021-03-01 13:35:03 -08:00
|
|
|
border-inline-start: 3px solid $primary;
|
|
|
|
padding-inline-start: calc(#{$list-group-item-padding-x} - 2px);
|
2020-10-28 08:22:29 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|