diff --git a/CHANGELOG.md b/CHANGELOG.md index c603ac8..3f8fbd2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/html/main.css b/html/main.css index 0a63a8f..8c4a471 100644 --- a/html/main.css +++ b/html/main.css @@ -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; diff --git a/html/styles/classic.css b/html/styles/classic.css index 4555da9..b724e70 100644 --- a/html/styles/classic.css +++ b/html/styles/classic.css @@ -67,3 +67,7 @@ text-align: center; } + +#audio-controls { + bottom: 4.5rem; +}