Skip to content

Commit 91e33a8

Browse files
committed
Added button for BookWyrm
#322
1 parent b3f0f7c commit 91e33a8

File tree

4 files changed

+121
-1
lines changed

4 files changed

+121
-1
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: 4 additions & 1 deletion
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'
@@ -222,6 +221,10 @@ public function run()
222221
[
223222
'name' => 'apple-podcasts'
224223
],
224+
225+
[
226+
'name' => 'bookwyrm'
227+
],
225228

226229
[
227230
'name' => 'briar'

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)