Skip to content

Commit

Permalink
fix exp button color
Browse files Browse the repository at this point in the history
  • Loading branch information
yilinxia committed Feb 11, 2025
1 parent 4fbf1b2 commit df898ec
Show file tree
Hide file tree
Showing 15 changed files with 1,251 additions and 912 deletions.
10 changes: 6 additions & 4 deletions app.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,11 @@
sys.path.insert(0, os.path.abspath(os.path.join(os.path.dirname(__file__), "src")))

from server import server
from layout import layout
import callbacks # noqa: F401 (necessary for callbacks to register)

from layouts.main_layout import layout
from callbacks import abstract_framework_callbacks # noqa: F401 (necessary for callbacks to register)
from callbacks import solution_callbacks # noqa: F401 (necessary for callbacks to register)
from callbacks import explanation_callbacks # noqa: F401 (necessary for callbacks to register)
from callbacks import visualization_callbacks # noqa: F401 (necessary for callbacks to register)

app = dash.Dash(
__name__,
Expand All @@ -21,5 +23,5 @@
app.layout = layout

if __name__ == "__main__":
app.run(host="0.0.0.0", port=8050, debug=False)
app.run(host="0.0.0.0", port=8050, debug=True)

11 changes: 10 additions & 1 deletion assets/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,13 @@
color: #111 !important;
}

/* Removed any margin between consecutive .btn-secondary buttons */
/* Removed any margin between consecutive .btn-secondary buttons */

.hover-button {
background-color: transparent !important;
transition: background-color 0.2s ease-in-out;
}

.hover-button:hover {
background-color: var(--hover-bg) !important;
}
Loading

0 comments on commit df898ec

Please sign in to comment.