Skip to content

Commit

Permalink
Fix inconsistent padding for audio controls
Browse files Browse the repository at this point in the history
  • Loading branch information
D4isDAVID committed Oct 10, 2024
1 parent 2db13eb commit 701a81b
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
### Fixed

- Inconsistent padding for finishing up message in modern style.
- Inconsistent padding for audio controls.

## [2.1.2] - 2024-09-10

Expand Down
2 changes: 1 addition & 1 deletion html/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ input[type='range']::-webkit-slider-thumb {
#audio-controls {
position: fixed;
left: 50%;
bottom: 3.5rem;
bottom: 1.75rem;
transform: translateX(-50%);
overflow: hidden;
width: 2.5rem;
Expand Down
4 changes: 4 additions & 0 deletions html/styles/classic.css
Original file line number Diff line number Diff line change
Expand Up @@ -67,3 +67,7 @@

text-align: center;
}

#audio-controls {
bottom: 4.5rem;
}

0 comments on commit 701a81b

Please sign in to comment.