Skip to content

Commit b29fec9

Browse files
author
Yeliazar
committed
updated Gallery
1 parent eff92e5 commit b29fec9

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

src/pages/Extra/Gallery/Gallery.vue

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,24 +2,24 @@
22
<div class="gallery-page">
33
<div class="d-flex justify-content-between align-items-center">
44
<b-button-group class="mb-lg">
5-
<b-button variant="default" @click="changeCategory(null)"
5+
<b-button variant="gray-default" @click="changeCategory(null)"
66
:class="{ active: activeCategory === null }"
77
>All</b-button>
8-
<b-button variant="default" @click="changeCategory('nature')"
8+
<b-button variant="gray-default" @click="changeCategory('nature')"
99
:class="{ active: activeCategory === 'nature' }"
1010
>Nature</b-button>
11-
<b-button variant="default" @click="changeCategory('people')"
11+
<b-button variant="gray-default" @click="changeCategory('people')"
1212
:class="{ active: activeCategory === 'people' }"
1313
>People</b-button>
14-
<b-button variant="default" @click="changeCategory('space')"
14+
<b-button variant="gray-default" @click="changeCategory('space')"
1515
:class="{ active: activeCategory === 'space' }"
1616
>Space</b-button>
1717
</b-button-group>
1818
<b-button-group class="mb-lg">
19-
<b-button variant="default" @click="desc = false"
19+
<b-button variant="gray-default" @click="desc = false"
2020
:class="{ active: desc === false }"
2121
><i class="fa fa-sort-numeric-asc"></i></b-button>
22-
<b-button variant="default" @click="desc = true"
22+
<b-button variant="gray-default" @click="desc = true"
2323
:class="{ active: desc }"
2424
><i class="fa fa-sort-numeric-desc"></i></b-button>
2525
</b-button-group>

src/styles/_base.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ table > thead > tr > th {
209209

210210
> a {
211211
text-decoration: none;
212-
color: $text-muted;
212+
color: $link-color;
213213

214214
&:hover {
215215
color: $text-muted;

0 commit comments

Comments
 (0)