fix: align sidebar footer metadata

This commit is contained in:
2026-08-20 07:49:12 +03:00
parent a090ce37ad
commit e1043bed36
4 changed files with 14 additions and 2 deletions

View File

@@ -1,5 +1,11 @@
# Changelog # Changelog
## [Frontend 0.9.3] - 2026-08-20
### Fixed
- Aligned sidebar versions and copyright as separate footer lines and updated the copyright period.
## [Backend 0.6.8] - 2026-08-20 ## [Backend 0.6.8] - 2026-08-20
### Fixed ### Fixed

View File

@@ -1,6 +1,6 @@
{ {
"name": "@family-budget/frontend", "name": "@family-budget/frontend",
"version": "0.9.2", "version": "0.9.3",
"private": true, "private": true,
"type": "module", "type": "module",
"scripts": { "scripts": {

View File

@@ -104,7 +104,7 @@ export function Layout({ children }: { children: ReactNode }) {
<span className="sidebar__version"> <span className="sidebar__version">
FE {__FE_VERSION__} · BE {beVersion ?? '…'} FE {__FE_VERSION__} · BE {beVersion ?? '…'}
</span> </span>
<span className="sidebar__copyright">© 2025 Семейный бюджет</span> <span className="sidebar__copyright">© 20252026 Семейный бюджет</span>
</div> </div>
</div> </div>
</aside> </aside>

View File

@@ -242,6 +242,12 @@ button {
gap: 10px; gap: 10px;
} }
.sidebar__meta {
flex-direction: column;
align-items: flex-start;
gap: 4px;
}
.sidebar__user { .sidebar__user {
min-width: 0; min-width: 0;
overflow: hidden; overflow: hidden;