Skip to content

Commit 71ef51c

Browse files
committed
Added back button ALL-INKL
1 parent 96829e1 commit 71ef51c

File tree

3 files changed

+19
-2
lines changed

3 files changed

+19
-2
lines changed

config/button-names.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
$buttonNames = array(
44
'littlelink-custom' => 'LittleLink Custom',
5+
'all-inkl' => 'ALL-INKL',
56
'appstore' => 'App Store',
67
'apple-music' => 'Apple Music',
78
'apple-podcasts' => 'Apple Podcasts',

database/seeders/ButtonSeeder.php

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,6 @@ public function run()
3838
'name' => 'cashapp'
3939
],
4040

41-
4241
[
4342
'name' => 'default email'
4443
],
@@ -384,8 +383,12 @@ public function run()
384383
'name' => 'youtube-music'
385384
],
386385

386+
[
387+
'name' => 'all-inkl'
388+
],
389+
387390
];
388391

389392
Button::insert($buttons);
390393
}
391-
}
394+
}

littlelink/css/brands.css

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -143,6 +143,19 @@ button:hover,
143143
filter: brightness(90%);
144144
}
145145

146+
/* ALL-INKL */
147+
.button.button-all-inkl {
148+
color: #000000;
149+
background-color: #FFFFFF;
150+
border-style: solid;
151+
border-color: #000000;
152+
border-width: 1px;
153+
}
154+
.button.button-all-inkl:hover,
155+
.button.button-all-inkl:focus {
156+
filter: brightness(90%);
157+
}
158+
146159
/* Amazon */
147160
.button.button-amazon {
148161
color: #ffffff;

0 commit comments

Comments
 (0)