fix(Changelog): adjust layout styles for improved responsiveness

This commit is contained in:
alexsparkes
2026-01-24 11:05:54 +00:00
parent 7835ef1dec
commit 2ded256bda

View File

@@ -28,7 +28,7 @@ const Changelog = () => {
} }
return ( return (
<div style={{ position: 'relative', width: '100%', minHeight: '100vh' }}> <div style={{ position: 'relative', width: '100%', height: '100%' }}>
{isLoading && ( {isLoading && (
<div <div
className="loaderHolder" className="loaderHolder"
@@ -47,11 +47,9 @@ const Changelog = () => {
<iframe <iframe
src={variables.constants.CHANGELOG_URL + '?embed=true'} src={variables.constants.CHANGELOG_URL + '?embed=true'}
onLoad={handleLoad} onLoad={handleLoad}
scrolling="no"
style={{ style={{
width: '100%', width: '100%',
height: '2000px', height: '100%',
minHeight: '100vh',
border: 'none', border: 'none',
opacity: isLoading ? 0 : 1, opacity: isLoading ? 0 : 1,
transition: 'opacity 0.2s ease-in-out', transition: 'opacity 0.2s ease-in-out',