You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Our CSS file includes multiple expressions like this: color: var(--bs-body-color, #333333); background-color: var(--bs-gray-200, #e9ecef);
Is overwriting theme colors the proper way to style our elements? Why are we replacing variable values with hard coded values? Should we not rather use the hard coded values directly?
The text was updated successfully, but these errors were encountered:
bs are custom css values in Bootstrap so if I think this setup automatically change the UI colors for filter panel if they choose to use different Bootstrap themes.
It was added in #165 so maybe @gogonzo can confirm.
Our CSS file includes multiple expressions like this:
color: var(--bs-body-color, #333333);
background-color: var(--bs-gray-200, #e9ecef);
Is overwriting theme colors the proper way to style our elements? Why are we replacing variable values with hard coded values? Should we not rather use the hard coded values directly?
The text was updated successfully, but these errors were encountered: