Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Solara
Browse files Browse the repository at this point in the history
IdeaS0ft committed Sep 18, 2024
1 parent 472e42f commit e781176
Showing 2 changed files with 20 additions and 6 deletions.
14 changes: 14 additions & 0 deletions solara/lib/core/dashboard/brand/brand.html
Original file line number Diff line number Diff line change
@@ -48,6 +48,9 @@
.right {
position: fixed;
width: 20%;
max-height: 600px; /* Set a fixed height */
overflow-y: auto; /* Enable vertical scrolling */
padding: 10px; /* Optional: add padding */
}
ul {
list-style-type: none;
@@ -58,8 +61,18 @@
}

.index {
list-style-type: none; /* Remove default list styling */
padding: 0; /* Remove padding */
margin: 40px;
}
.index li {
padding: 8px; /* Add some padding to list items */
border-bottom: 1px solid #eee; /* Optional: add a bottom border */
}

.index li:last-child {
border-bottom: none; /* Remove the border from the last item */
}
.index a {
color: #0066cc;
text-decoration: none;
@@ -369,6 +382,7 @@
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
transition: transform 0.2s;
display: none;
z-index: 1000;
}

#error-button:hover {
Original file line number Diff line number Diff line change
@@ -10,18 +10,18 @@ def template_with_key(key)

def templates
[
{
key: 'theme',
name: 'Theme Configuration',
input_type: 'color',
path: FilePath.brand_theme(@brand_key)
},
{
key: 'brand_config',
name: 'Brand Configuration',
input_type: 'text',
path: FilePath.brand_config(@brand_key)
},
{
key: 'theme',
name: 'Theme Configuration',
input_type: 'color',
path: FilePath.brand_theme(@brand_key)
},
{
key: 'android_config',
name: 'Android Platform Configuration',

0 comments on commit e781176

Please sign in to comment.