Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Feb 10, 2025
1 parent e06e51d commit b22a36d
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 7 deletions.
7 changes: 4 additions & 3 deletions funnel/assets/sass/mui/_custom.scss
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,10 @@ $mui-body-bg-color: $mui-bg-color-accent !default;
$mui-btn-danger-bg-color: $mui-text-danger;

$mui-base-font-color: $mui-text-dark !default;
$mui-base-font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
Ubuntu, Cantarell, 'Helvetica Neue', Arial, sans-serif, 'Noto Sans Math',
'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
$mui-base-font-family:
-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell,
'Helvetica Neue', Arial, sans-serif, 'Noto Sans Math', 'Apple Color Emoji',
'Segoe UI Emoji', 'Segoe UI Symbol';
$mui-base-font-size: 14px !default;
$mui-base-font-size-desktop: 16px !default;
$mui-base-font-weight: 400 !default;
Expand Down
7 changes: 4 additions & 3 deletions funnel/static/css/app.css
Original file line number Diff line number Diff line change
Expand Up @@ -1690,9 +1690,10 @@ html {
}

body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu,
Cantarell, 'Helvetica Neue', Arial, sans-serif, 'Noto Sans Math',
'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
font-family:
-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell,
'Helvetica Neue', Arial, sans-serif, 'Noto Sans Math', 'Apple Color Emoji',
'Segoe UI Emoji', 'Segoe UI Symbol';
font-size: 14px;
font-weight: 400;
line-height: 1.5;
Expand Down
2 changes: 1 addition & 1 deletion tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -492,7 +492,7 @@ def backup_and_apply_config(
) -> None:
if key in saved_config:
pytest.fail(f"Duplicate mock for {app_name}.config[{key!r}]")
if key in app_fixture.config: # noqa: SIM401
if key in app_fixture.config:
saved_config[key] = app_fixture.config[key]
else:
saved_config[key] = ... # Sentinel value
Expand Down

0 comments on commit b22a36d

Please sign in to comment.