Skip to content

Commit

Permalink
Merge pull request #51 from questionlp/develop
Browse files Browse the repository at this point in the history
Remove responsive font sizing
  • Loading branch information
questionlp authored Nov 23, 2024
2 parents bc97fdd + d1aade1 commit f1cf079
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 6 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Changes

## 3.0.1

### Application Changes

- Remove responsive font sizing for `:root` in `wwdtm-theme`.

### Development Changes

- Upgrade ruff from 0.7.0 to 0.7.4

## 3.0.0

### Application Changes
Expand Down
6 changes: 4 additions & 2 deletions app/static/css/app.css
Original file line number Diff line number Diff line change
Expand Up @@ -11519,10 +11519,12 @@ textarea.form-control-lg {
display: none !important;
}
}
/*
:root {
--bs-body-font-size: clamp(15px, calc(15px + 0.390625vw), 18px);
// Adapted from: https://matthewjamestaylor.com/responsive-font-size
--bs-body-font-size: clamp(15px, calc(15px + 0.390625vw), 18px);
}

*/
body .tooltip {
font-size: 0.9em;
}
Expand Down
2 changes: 1 addition & 1 deletion app/static/css/app.min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion app/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
# vim: set noai syntax=python ts=4 sw=4:
"""Version module for Wait Wait Reports."""

APP_VERSION = "3.0.0"
APP_VERSION = "3.0.1"
2 changes: 1 addition & 1 deletion requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ruff==0.7.0
ruff==0.7.4
black==24.10.0
pytest==8.3.3
pytest-cov==5.0.0
Expand Down
2 changes: 1 addition & 1 deletion scss
Submodule scss updated 1 files
+2 −0 wwdtm/_styles.scss

0 comments on commit f1cf079

Please sign in to comment.