Skip to content

Commit 525245a

Browse files
Merge pull request #357 from MagicLike/bookwyrm
Added button for BookWyrm
2 parents 6e0dba1 + 647e004 commit 525245a

File tree

4 files changed

+122
-2
lines changed

4 files changed

+122
-2
lines changed

config/button-names.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
'appstore' => 'App Store',
77
'apple-music' => 'Apple Music',
88
'apple-podcasts' => 'Apple Podcasts',
9+
'bookwyrm' => 'BookWyrm',
910
'dev-to' => 'DEV',
1011
'epic-games' => 'Epic Games',
1112
'f-droid' => 'F-Droid',

database/seeders/ButtonSeeder.php

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,6 @@ public function run()
6969
[
7070
'name' => 'goodreads'
7171
],
72-
7372

7473
[
7574
'name' => 'instagram'
@@ -392,7 +391,11 @@ public function run()
392391
],
393392

394393
[
395-
'name' => 'icon'
394+
'name' => 'icon'
395+
],
396+
397+
[
398+
'name' => 'bookwyrm'
396399
],
397400

398401
];

littlelink/css/brands.css

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -225,6 +225,19 @@ button:hover,
225225
filter: brightness(90%);
226226
}
227227

228+
/* BookWyrm */
229+
.button.button-bookwyrm {
230+
color: #000000;
231+
background-color: #ffffff;
232+
border-style: solid;
233+
border-color: #000000;
234+
border-width: 1px;
235+
}
236+
.button.button-bookwyrm:hover,
237+
.button.button-bookwyrm:focus {
238+
filter: brightness(90%);
239+
}
240+
228241
/* Briar */
229242
.button.button-briar {
230243
color: #FFFFFF;

0 commit comments

Comments
 (0)