Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

planned for 2025-10-01

Thanks to: @dathbe.

### Changed

- [clock] Add CSS to prevent line breaking of sunset/sunrise time display (#3816)

### Updated

- [core] Update dependencies including electron to v37 (#3831)
Expand Down
8 changes: 8 additions & 0 deletions modules/default/clock/clock_styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -87,9 +87,17 @@
transform-origin: 50% 100%;
}

.module.clock .digital {
display: flex;
flex-direction: column;
gap: 3px;
}

.module.clock .sun,
.module.clock .moon {
display: flex;
white-space: nowrap;
gap: 10px;
}

.module.clock .sun > *,
Expand Down
Loading