Skip to content

Commit 0c5c686

Browse files
committed
Bugfix
+ added config
1 parent 86a5039 commit 0c5c686

File tree

2 files changed

+56
-1
lines changed

2 files changed

+56
-1
lines changed

brands.css

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,8 @@
4848
background-image: linear-gradient(rgb(13, 14, 33), rgb(13, 14, 33)), radial-gradient(circle at left top, rgb(1, 110, 218), rgb(217, 0, 192));
4949
background-origin: border-box;
5050
background-clip: padding-box, border-box;
51-
width: 300px;
51+
max-width: 300px;
52+
width: 70%;
5253
}
5354

5455
.button:hover {

config.php

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
<?php
2+
3+
return [
4+
5+
/*
6+
|--------------------------------------------------------------------------
7+
| Theme Config
8+
|--------------------------------------------------------------------------
9+
|
10+
| Description.
11+
|
12+
*/
13+
14+
// Some themes may not be compatible with custom buttons created by the Button Editor.
15+
// If 'false' the default button CSS is used.
16+
'allow_custom_buttons' => 'false',
17+
18+
'open_links_in_same_tab' => 'false',
19+
20+
21+
/*
22+
|--------------------------------------------------------------------------
23+
| Custom Code
24+
|--------------------------------------------------------------------------
25+
|
26+
| Description.
27+
|
28+
*/
29+
30+
'enable_custom_code' => 'false',
31+
32+
// Disable individual files (only applies if above is 'true').
33+
'enable_custom_head' => 'true',
34+
'enable_custom_body' => 'true',
35+
'enable_custom_body_end' => 'true',
36+
37+
38+
/*
39+
|--------------------------------------------------------------------------
40+
| Custom Icons
41+
|--------------------------------------------------------------------------
42+
|
43+
| Description.
44+
|
45+
*/
46+
47+
'use_custom_icons' => 'false',
48+
49+
// Is not set correct this will cause errors.
50+
'custom_icon_extension' => '.svg', // (.png, .jpg ...)
51+
52+
53+
54+
];

0 commit comments

Comments
 (0)